Commit 7af3f014 authored by gabime's avatar gabime

Fixed clang-tidy warning

parent 8e80081f
...@@ -129,8 +129,8 @@ enum class pattern_time_type ...@@ -129,8 +129,8 @@ enum class pattern_time_type
class spdlog_ex : public std::exception class spdlog_ex : public std::exception
{ {
public: public:
explicit spdlog_ex(const std::string &msg) explicit spdlog_ex(std::string msg)
: msg_(msg) : msg_(std::move(msg))
{ {
} }
......
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