summaryrefslogtreecommitdiffstats
path: root/src/uscxml/interpreter/EventQueueImpl.h
diff options
context:
space:
mode:
authorStefan Radomski <github@mintwerk.de>2017-01-23 22:53:31 (GMT)
committerStefan Radomski <github@mintwerk.de>2017-01-23 22:53:31 (GMT)
commitb450411ee8f0a57f3ec3909d65ecc289189e2b35 (patch)
tree7051138495509431379a63fe16c1bbaaa41c9bc7 /src/uscxml/interpreter/EventQueueImpl.h
parent24ac6c39a89f5b94ede80b745f68ea5f0b762640 (diff)
downloaduscxml-b450411ee8f0a57f3ec3909d65ecc289189e2b35.zip
uscxml-b450411ee8f0a57f3ec3909d65ecc289189e2b35.tar.gz
uscxml-b450411ee8f0a57f3ec3909d65ecc289189e2b35.tar.bz2
Added -Wall for clang and gcc
Diffstat (limited to 'src/uscxml/interpreter/EventQueueImpl.h')
-rw-r--r--src/uscxml/interpreter/EventQueueImpl.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/uscxml/interpreter/EventQueueImpl.h b/src/uscxml/interpreter/EventQueueImpl.h
index 50ac608..f4c2b54 100644
--- a/src/uscxml/interpreter/EventQueueImpl.h
+++ b/src/uscxml/interpreter/EventQueueImpl.h
@@ -69,6 +69,9 @@ public:
virtual Data serialize() = 0;
virtual void deserialize(const Data& data) = 0;
+private:
+ // this will silence the warning about the hidden overloaded virtual function
+ using EventQueueImpl::create;
};
}