bazaar: Fixing for C++11

git-svn-id: svn://ultimatepp.org/upp/trunk@9130 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2015-11-01 19:19:17 +00:00
parent 2d302b70d2
commit 2a208a73e1
10 changed files with 60 additions and 28 deletions

View file

@ -0,0 +1,13 @@
#include <Core/Core.h>
#include <ProductVersion/ProductVersion.h>
using namespace Upp;
CONSOLE_APP_MAIN
{
ProductVersion v(1, 2, 3);
ProductVersion v2 = v;
v2.IncDevel();
DUMP(v < v2);
}