Merge pull request #586 from horar/fix/warnings

Solve compiler warning in tests
This commit is contained in:
Gabi Melman 2017-12-20 09:50:34 +02:00 committed by GitHub
commit 48eca46680
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,7 +15,7 @@ class failing_sink: public spdlog::sinks::sink
throw std::runtime_error("some error happened during log");
}
void flush()
void flush() override
{}
};