summaryrefslogtreecommitdiffstats
path: root/Sluift
diff options
context:
space:
mode:
Diffstat (limited to 'Sluift')
-rw-r--r--Sluift/EditlineTerminal.h2
-rw-r--r--Sluift/StandardTerminal.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/Sluift/EditlineTerminal.h b/Sluift/EditlineTerminal.h
index 2f671b7..6e24630 100644
--- a/Sluift/EditlineTerminal.h
+++ b/Sluift/EditlineTerminal.h
@@ -20,6 +20,6 @@ namespace Swift {
virtual boost::optional<std::string> readLine(const std::string& prompt) SWIFTEN_OVERRIDE;
virtual void printError(const std::string& message) SWIFTEN_OVERRIDE;
- virtual void addToHistory(const std::string& command);
+ virtual void addToHistory(const std::string& command) SWIFTEN_OVERRIDE;
};
}
diff --git a/Sluift/StandardTerminal.h b/Sluift/StandardTerminal.h
index 420df6b..af65532 100644
--- a/Sluift/StandardTerminal.h
+++ b/Sluift/StandardTerminal.h
@@ -17,6 +17,6 @@ namespace Swift {
virtual boost::optional<std::string> readLine(const std::string& prompt) SWIFTEN_OVERRIDE;
virtual void printError(const std::string& message) SWIFTEN_OVERRIDE;
- virtual void addToHistory(const std::string& command);
+ virtual void addToHistory(const std::string& command) SWIFTEN_OVERRIDE;
};
}