mirror of
https://github.com/pocoproject/poco.git
synced 2025-01-19 00:46:03 +01:00
fix compiling for gcc 4.6
This commit is contained in:
parent
6cfbb73e6f
commit
85d47c4db7
@ -1973,7 +1973,7 @@ void SQLiteTest::testNullable()
|
|||||||
|
|
||||||
Nullable<int> i = 1;
|
Nullable<int> i = 1;
|
||||||
Nullable<double> f = 1.5;
|
Nullable<double> f = 1.5;
|
||||||
Nullable<std::string> s = "abc";
|
Nullable<std::string> s = std::string("abc");
|
||||||
Nullable<DateTime> d = DateTime();
|
Nullable<DateTime> d = DateTime();
|
||||||
|
|
||||||
assert (!i.isNull());
|
assert (!i.isNull());
|
||||||
|
Loading…
x
Reference in New Issue
Block a user