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
+2 -2
View File
@@ -115,7 +115,7 @@ namespace sqlpp
private:
bool _trivial_value_is_null;
_cpp_value_type _value;
signed char _value;
bool _is_null;
};
@@ -185,7 +185,7 @@ namespace sqlpp
private:
bool _is_valid;
bool _is_null;
_cpp_value_type _value;
signed char _value;
};
template<typename T>