Commit 1150247e authored by gabime's avatar gabime

astyle

parent a24ff547
...@@ -112,7 +112,8 @@ int main(int, char*[]) ...@@ -112,7 +112,8 @@ int main(int, char*[])
// Example of user defined class with operator<< // Example of user defined class with operator<<
class some_class {}; class some_class {};
std::ostream& operator<<(std::ostream& os, const some_class&) { std::ostream& operator<<(std::ostream& os, const some_class&)
{
return os << "some_class"; return os << "some_class";
} }
......
...@@ -64,7 +64,7 @@ class async_log_helper ...@@ -64,7 +64,7 @@ class async_log_helper
async_msg() = default; async_msg() = default;
~async_msg() = default; ~async_msg() = default;
async_msg(async_msg&& other) SPDLOG_NOEXCEPT: async_msg(async_msg&& other) SPDLOG_NOEXCEPT:
logger_name(std::move(other.logger_name)), logger_name(std::move(other.logger_name)),
level(std::move(other.level)), level(std::move(other.level)),
time(std::move(other.time)), time(std::move(other.time)),
......
This diff is collapsed.
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