Commit 53830726 authored by gabime's avatar gabime

Merge branch 'master' of https://github.com/gabime/spdlog

parents c1dd340a 9c35a583
...@@ -98,7 +98,6 @@ int main(int, char* []) ...@@ -98,7 +98,6 @@ int main(int, char* [])
for(int i = 0; i < 10; ++i) for(int i = 0; i < 10; ++i)
file_logger->info("{} * {} equals {:>10}", i, i, i*i); file_logger->info("{} * {} equals {:>10}", i, i, i*i);
// //
// Create a daily logger - a new file is created every day on 2:30am // Create a daily logger - a new file is created every day on 2:30am
// //
......
...@@ -112,7 +112,7 @@ int main(int, char*[]) ...@@ -112,7 +112,7 @@ 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& c) { std::ostream& operator<<(std::ostream& os, const some_class&) {
return os << "some_class"; return os << "some_class";
} }
......
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