You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 8, 2022. It is now read-only.
It would make sense to convert DeviceData::operator<<(string &) to DeviceData::operator<<(const string &) in order to allow to insert directly const string variables without having to use c_str() string method or doing a cast to string.
The same could be done for DbDatum, but the method is not inline so might trigger some binary incompatibilities if we don't keep the old version too in this specific case. So for DbDatum, we should keep operator << (string &) and we could add operator << (const string &)