0
0
mirror of https://github.com/rbock/sqlpp11.git synced 2024-11-15 20:31:16 +08:00

Changed data type for boolean to signed char (seems to be more common for binary bindings)

This commit is contained in:
Roland Bock 2014-01-04 18:21:48 +01:00
parent 5b77bf3fea
commit bbf18e4f7a

View File

@ -115,7 +115,7 @@ namespace sqlpp
private: private:
bool _trivial_value_is_null; bool _trivial_value_is_null;
_cpp_value_type _value; signed char _value;
bool _is_null; bool _is_null;
}; };
@ -185,7 +185,7 @@ namespace sqlpp
private: private:
bool _is_valid; bool _is_valid;
bool _is_null; bool _is_null;
_cpp_value_type _value; signed char _value;
}; };
template<typename T> template<typename T>