summaryrefslogtreecommitdiffstats
path: root/staging_vespalib/src/tests/objects
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2017-04-26 22:13:52 +0200
committerHenning Baldersheim <balder@yahoo-inc.com>2017-04-26 22:13:52 +0200
commit8dce83b423159201d91e97c5d779ef8c064b025d (patch)
tree2de86cba041396eb8e3a94abe56898f7a408f316 /staging_vespalib/src/tests/objects
parent46dd4350fd595b42ef213981773487f62c86417b (diff)
No virtual on override
Optimize includes.
Diffstat (limited to 'staging_vespalib/src/tests/objects')
-rw-r--r--staging_vespalib/src/tests/objects/identifiable_test.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/staging_vespalib/src/tests/objects/identifiable_test.cpp b/staging_vespalib/src/tests/objects/identifiable_test.cpp
index c60f33b9b55..5ef48b6e779 100644
--- a/staging_vespalib/src/tests/objects/identifiable_test.cpp
+++ b/staging_vespalib/src/tests/objects/identifiable_test.cpp
@@ -1,5 +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/vespalib/testkit/testapp.h>
#include <vespa/vespalib/objects/identifiable.hpp>
#include <vespa/vespalib/objects/namedobject.h>
@@ -40,7 +40,7 @@ class A : public Abstract
public:
DECLARE_IDENTIFIABLE(A);
A() { }
- virtual void someAbstractVirtualMethod() override { }
+ void someAbstractVirtualMethod() override { };
};
class B : public A