Kaydet (Commit) 047d9818 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Catch accidental mis-conversions from pointer to bool

Change-Id: I3f6ec3bd951d45b973880be1ae19e167c5e99d20
üst 38e24704
...@@ -268,6 +268,9 @@ namespace connectivity ...@@ -268,6 +268,9 @@ namespace connectivity
operator=(_rRH); operator=(_rRH);
} }
// Avoid accidental uses of ORowSetValue(bool const &):
template<typename T> ORowSetValue(T const *) = delete;
~ORowSetValue() ~ORowSetValue()
{ {
free(); free();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment