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
When trying to use ::utility::datetime as a key for an entity compilation fails:
.\Release\include\cpprest/asyncrt_utils.h(212): error C2679: binary '<<': no operator found which takes a right-hand operand of type 'const utility::datetime' (or there is no acceptable conversion)
This is due to class datetime failing to overload the << and >> stream operators. As the class already has two methods from_string() and to_string() this should be faily easy to fix.