From 6c7d6b0d2b1ccd4d025305925f260f2b0a1bc696 Mon Sep 17 00:00:00 2001 From: Tim Quatmann Date: Tue, 10 Aug 2021 14:38:01 +0200 Subject: [PATCH] Silenced some unused variable-warnings. --- src/storm/automata/HOAConsumerDAHeader.h | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/storm/automata/HOAConsumerDAHeader.h b/src/storm/automata/HOAConsumerDAHeader.h index 4d12c0082..c206ef8e3 100644 --- a/src/storm/automata/HOAConsumerDAHeader.h +++ b/src/storm/automata/HOAConsumerDAHeader.h @@ -32,7 +32,7 @@ public: } /** Called by the parser for the "HOA: version" item [mandatory, once]. */ - virtual void notifyHeaderStart(const std::string& version) { + virtual void notifyHeaderStart(const std::string& /*version*/) { // TODO: Check version } @@ -101,7 +101,7 @@ public: /** * Called by the parser for the "name: ..." item [optional, once]. **/ - virtual void setName(const std::string& name) { + virtual void setName(const std::string& /*name*/) { // IGNORE } @@ -110,7 +110,7 @@ public: * @param name the tool name * @param version the tool version (option, empty pointer if not provided) **/ - virtual void setTool(const std::string& name, std::shared_ptr version) { + virtual void setTool(const std::string& /*name*/, std::shared_ptr /*version*/) { // IGNORE } @@ -118,7 +118,7 @@ public: * Called by the parser for the "properties: ..." item [optional, multiple]. * @param properties a list of properties */ - virtual void addProperties(const std::vector& properties) { + virtual void addProperties(const std::vector& /*properties*/) { // TODO: check supported } @@ -127,7 +127,7 @@ public: * @param name the name of the header (without ':') * @param content a list of extra information provided by the header */ - virtual void addMiscHeader(const std::string& name, const std::vector& content) { + virtual void addMiscHeader(const std::string& /*name*/, const std::vector& /*content*/) { // TODO: Check semantic headers } @@ -145,7 +145,7 @@ public: * @param labelExpr an optional boolean expression over labels (state-labeled) (empty pointer if not provided) * @param accSignature an optional list of acceptance set indizes (state-labeled acceptance) (empty pointer if not provided) */ - virtual void addState(unsigned int id, std::shared_ptr info, label_expr::ptr labelExpr, std::shared_ptr accSignature) { + virtual void addState(unsigned int /*id*/, std::shared_ptr /*info*/, label_expr::ptr /*labelExpr*/, std::shared_ptr /*accSignature*/) { // IGNORE } @@ -161,7 +161,7 @@ public: * @param conjSuccessors a list of successor state indizes, interpreted as a conjunction * @param accSignature an optional list of acceptance set indizes (transition-labeled acceptance) (empty pointer if not provided) */ - virtual void addEdgeImplicit(unsigned int stateId, const int_list& conjSuccessors, std::shared_ptr accSignature) { + virtual void addEdgeImplicit(unsigned int /*stateId*/, const int_list& /*conjSuccessors*/, std::shared_ptr /*accSignature*/) { // IGNORE } @@ -174,7 +174,7 @@ public: * @param conjSuccessors a list of successors state indizes, interpreted as a conjunction * @param accSignature an optional list of acceptance set indizes (transition-labeled acceptance) (empty pointer if none provided) */ - virtual void addEdgeWithLabel(unsigned int stateId, label_expr::ptr labelExpr, const int_list& conjSuccessors, std::shared_ptr accSignature) { + virtual void addEdgeWithLabel(unsigned int /*stateId*/, label_expr::ptr /*labelExpr*/, const int_list& /*conjSuccessors*/, std::shared_ptr /*accSignature*/) { // IGNORE } @@ -182,7 +182,7 @@ public: * Called by the parser to notify the consumer that the definition for state `stateId` * has ended [multiple]. */ - virtual void notifyEndOfState(unsigned int stateId) { + virtual void notifyEndOfState(unsigned int /*stateId*/) { // IGNORE }