diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2011-11-29 12:18:10 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2011-11-29 12:18:10 +0200 |
commit | 1b719c832cd664884183af698b1f2d6075579cd2 (patch) | |
tree | ee1663b5ffc293bbd0f75e247da4501fdc454daa /common | |
parent | 140476391c2dd2982a0b0560e5960de8b7231fb1 (diff) |
Use biggest int type to avoid potential warnings
Diffstat (limited to 'common')
-rw-r--r-- | common/types/test.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/types/test.hxx b/common/types/test.hxx index 858f403..a36b5d5 100644 --- a/common/types/test.hxx +++ b/common/types/test.hxx @@ -51,7 +51,7 @@ struct num_wrap struct object3 { #pragma db id type("INTEGER") - num_wrap<int> num_; + num_wrap<long long> num_; // Use long long to avoid warnings. }; #endif // TEST_HXX |