aboutsummaryrefslogtreecommitdiffstats
path: root/fnet/src/examples/timeout
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2017-04-26 22:01:24 +0200
committerHenning Baldersheim <balder@yahoo-inc.com>2017-04-26 22:01:24 +0200
commita7363640b51c476e90e47044ca7a7cef4af0371b (patch)
tree3ba64a0e94d564a815182e0fe11d509eb57588c9 /fnet/src/examples/timeout
parent46dd4350fd595b42ef213981773487f62c86417b (diff)
No virtual on override.
Optimize includes.
Diffstat (limited to 'fnet/src/examples/timeout')
-rw-r--r--fnet/src/examples/timeout/timeout.cpp8
1 files changed, 3 insertions, 5 deletions
diff --git a/fnet/src/examples/timeout/timeout.cpp b/fnet/src/examples/timeout/timeout.cpp
index 8a52d769282..7edfbe4fb1c 100644
--- a/fnet/src/examples/timeout/timeout.cpp
+++ b/fnet/src/examples/timeout/timeout.cpp
@@ -1,9 +1,7 @@
// 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("timeout");
-#include <vespa/fnet/fnet.h>
+#include <vespa/fnet/fnet.h>
+#include <vespa/fastos/app.h>
class Timeout : public FNET_Task
{
@@ -20,7 +18,7 @@ public:
_queue(queue)
{}
- virtual void PerformTask() override;
+ void PerformTask() override;
};