summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/fixtures/fixture_log.hpp3
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)