summaryrefslogtreecommitdiffstats
path: root/persistence/src/tests/proxy/providerproxy_conformancetest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'persistence/src/tests/proxy/providerproxy_conformancetest.cpp')
-rw-r--r--persistence/src/tests/proxy/providerproxy_conformancetest.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/persistence/src/tests/proxy/providerproxy_conformancetest.cpp b/persistence/src/tests/proxy/providerproxy_conformancetest.cpp
index cadcd3c224a..a33b736a12d 100644
--- a/persistence/src/tests/proxy/providerproxy_conformancetest.cpp
+++ b/persistence/src/tests/proxy/providerproxy_conformancetest.cpp
@@ -1,5 +1,6 @@
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+#include <vespa/fastos/fastos.h>
#include <vespa/vespalib/testkit/test_kit.h>
#include <vespa/document/repo/documenttyperepo.h>
#include <vespa/persistence/conformancetest/conformancetest.h>
@@ -20,7 +21,9 @@ struct DummyFactory : Factory {
return PersistenceProvider::UP(new dummy::DummyPersistence(repo, 4));
}
- bool supportsActiveState() const override {
+ virtual bool
+ supportsActiveState() const override
+ {
return true;
}
};