summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2017-04-04 16:35:02 +0200
committerHenning Baldersheim <balder@yahoo-inc.com>2017-04-04 16:36:18 +0200
commit9204052b04f33c47f62acb8d01161726268990d5 (patch)
tree49e0e9819bd9a73c316694d791b93700a694db92 /config
parent31fa22ae90c6481c6e70eb2381d63ecc9b6c6d42 (diff)
Use override
Diffstat (limited to 'config')
-rw-r--r--config/src/vespa/config/print/asciiconfigreader.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/config/src/vespa/config/print/asciiconfigreader.h b/config/src/vespa/config/print/asciiconfigreader.h
index 135d2d4d51f..352cc8510cb 100644
--- a/config/src/vespa/config/print/asciiconfigreader.h
+++ b/config/src/vespa/config/print/asciiconfigreader.h
@@ -1,9 +1,9 @@
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#pragma once
-#include <vespa/vespalib/stllike/asciistream.h>
#include "configreader.h"
#include "configformatter.h"
+#include <vespa/vespalib/stllike/asciistream.h>
namespace config {
@@ -16,7 +16,7 @@ class AsciiConfigReader : public ConfigReader<ConfigType>
public:
AsciiConfigReader(vespalib::asciistream & is);
std::unique_ptr<ConfigType> read();
- std::unique_ptr<ConfigType> read(const ConfigFormatter & formatter);
+ std::unique_ptr<ConfigType> read(const ConfigFormatter & formatter) override;
private:
vespalib::asciistream & _is;
};