Commit 9ccb6af2 authored by Gabi Melman's avatar Gabi Melman Committed by GitHub

Merge pull request #305 from chenhayat/vs2013_fix

Fix Klockwork compilation warning
parents 8c67d6e0 5259b3db
...@@ -82,7 +82,7 @@ async_msg(async_msg&& other) SPDLOG_NOEXCEPT: ...@@ -82,7 +82,7 @@ async_msg(async_msg&& other) SPDLOG_NOEXCEPT:
// never copy or assign. should only be moved.. // never copy or assign. should only be moved..
async_msg(const async_msg&) = delete; async_msg(const async_msg&) = delete;
async_msg& operator=(async_msg& other) = delete; async_msg& operator=(const async_msg& other) = delete;
// construct from log_msg // construct from log_msg
async_msg(const details::log_msg& m) : async_msg(const details::log_msg& m) :
......
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