Unverified Commit 37cd7072 authored by Gabi Melman's avatar Gabi Melman Committed by GitHub

Fix issue #819

parent 3698c1d2
...@@ -64,8 +64,8 @@ struct async_msg ...@@ -64,8 +64,8 @@ struct async_msg
return *this; return *this;
} }
#else // (_MSC_VER) && _MSC_VER <= 1800 #else // (_MSC_VER) && _MSC_VER <= 1800
async_msg(async_msg &&other) = default; async_msg(async_msg &&) = default;
async_msg &operator=(async_msg &&other) = default; async_msg &operator=(async_msg &&) = default;
#endif #endif
// construct from log_msg with given type // construct from log_msg with given type
......
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