summaryrefslogtreecommitdiffstats
path: root/vespalib/src/tests/weakref
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2017-04-03 20:22:16 +0200
committerHenning Baldersheim <balder@yahoo-inc.com>2017-04-04 16:36:18 +0200
commit5a48a81c4134bae524aa66e1e49624f678c8b6ce (patch)
tree04cf54e814d86a98cd5407510981edb28736dcc3 /vespalib/src/tests/weakref
parentd57ddaefd37e6a19d3a6937fbf9a655dbafcdba5 (diff)
Add override in vespalib module
Diffstat (limited to 'vespalib/src/tests/weakref')
-rw-r--r--vespalib/src/tests/weakref/weakref_test.cpp7
1 files changed, 2 insertions, 5 deletions
diff --git a/vespalib/src/tests/weakref/weakref_test.cpp b/vespalib/src/tests/weakref/weakref_test.cpp
index 9da22c308c3..d5cca8b6ed2 100644
--- a/vespalib/src/tests/weakref/weakref_test.cpp
+++ b/vespalib/src/tests/weakref/weakref_test.cpp
@@ -1,19 +1,16 @@
// 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("weakref_test");
+
#include <vespa/vespalib/util/weakref.h>
#include <vespa/vespalib/testkit/testapp.h>
using vespalib::WeakRef;
-
class Test : public vespalib::TestApp
{
public:
int getFive() { return 5; }
void testSimple();
- int Main();
+ int Main() override;
};