diff options
author | Mike Morris <michael.patrick.morris@gmail.com> | 2014-07-15 17:06:35 -0400 |
---|---|---|
committer | Mike Morris <michael.patrick.morris@gmail.com> | 2014-07-15 17:06:35 -0400 |
commit | a2336cf7ad5e7e6d6936b21ef0d1acdc1f2f8a04 (patch) | |
tree | 00632acffbe0bc6becba6bdf721d951dfaa6a5ef /test | |
parent | 9437d0d7ccfccf8cf94e3f04d3fc4ea428ece0ab (diff) | |
parent | 5459d80d4723cfed3da8a2088bbb45e1ee3a00ce (diff) | |
download | qtlocation-mapboxgl-a2336cf7ad5e7e6d6936b21ef0d1acdc1f2f8a04.tar.gz |
Merge branch 'master' into fuzz-pipe
Diffstat (limited to 'test')
-rw-r--r-- | test/fixtures/fixture_log.hpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/fixtures/fixture_log.hpp b/test/fixtures/fixture_log.hpp index 8a41241858..c41d74ab9c 100644 --- a/test/fixtures/fixture_log.hpp +++ b/test/fixtures/fixture_log.hpp @@ -2,6 +2,7 @@ #define LLMR_TEST_FIXTURE_LOG #include <llmr/platform/log.hpp> +#include <llmr/util/noncopyable.hpp> #include <boost/optional.hpp> @@ -10,7 +11,7 @@ namespace llmr { -class FixtureLogBackend : public LogBackend { +class FixtureLogBackend : public LogBackend, private util::noncopyable { public: struct LogMessage { inline LogMessage(EventSeverity severity, Event event, int64_t code, const std::string &msg) |