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:
parent
5b77bf3fea
commit
bbf18e4f7a
@ -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>
|
||||
|
Loading…
Reference in New Issue
Block a user