summaryrefslogtreecommitdiffstats
path: root/src/uscxml/Message.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/uscxml/Message.h')
-rw-r--r--src/uscxml/Message.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/uscxml/Message.h b/src/uscxml/Message.h
index 006d515..2a49264 100644
--- a/src/uscxml/Message.h
+++ b/src/uscxml/Message.h
@@ -155,7 +155,7 @@ public:
/// TODO: Do we want to set namelist and params as well?
std::map<std::string, std::string> getNameList() { return namelist; }
- virtual const std::vector<std::string> getNameListKeys() {
+ const std::vector<std::string> getNameListKeys() {
std::set<std::string> keys;
namelist_t::const_iterator nameListIter = namelist.begin();
while (nameListIter != namelist.end()) {
@@ -239,7 +239,7 @@ public:
/// TODO: Do we want to set namelist and params as well?
std::map<std::string, std::string> getNameList() { return namelist; }
- virtual const std::vector<std::string> getNameListKeys() {
+ const std::vector<std::string> getNameListKeys() {
std::set<std::string> keys;
namelist_t::const_iterator nameListIter = namelist.begin();
while (nameListIter != namelist.end()) {