summaryrefslogtreecommitdiffstats
path: root/vespalib/src/tests/rwlock/rwlock_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'vespalib/src/tests/rwlock/rwlock_test.cpp')
-rw-r--r--vespalib/src/tests/rwlock/rwlock_test.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/vespalib/src/tests/rwlock/rwlock_test.cpp b/vespalib/src/tests/rwlock/rwlock_test.cpp
index b4e5bd1f98f..a716e4d0652 100644
--- a/vespalib/src/tests/rwlock/rwlock_test.cpp
+++ b/vespalib/src/tests/rwlock/rwlock_test.cpp
@@ -1,7 +1,5 @@
// 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/log/log.h>
-LOG_SETUP("rwlock_test");
+
#include <vespa/vespalib/testkit/testapp.h>
#include <vespa/vespalib/util/rwlock.h>
@@ -10,7 +8,7 @@ using namespace vespalib;
class RWLockTest : public TestApp
{
public:
- int Main();
+ int Main() override;
static RWLockReader rbvReader(RWLock & lock) { RWLockReader r(lock); return r; }
static RWLockWriter rbvWriter(RWLock & lock) { RWLockWriter r(lock); return r; }
};