diff options
author | Erik Verbruggen <erik.verbruggen@digia.com> | 2012-12-17 10:57:18 +0100 |
---|---|---|
committer | The Qt Project <gerrit-noreply@qt-project.org> | 2012-12-17 12:11:23 +0100 |
commit | 4be8f093a4f5f92470eeb54687de13e3aeb611b2 (patch) | |
tree | 5dfcd88f50f62be28200309ff3345a889c0fc954 | |
parent | 4273590ef2ef9c15b201936ded1b38c7bf7fd654 (diff) | |
download | qtxmlpatterns-4be8f093a4f5f92470eeb54687de13e3aeb611b2.tar.gz |
Fix compiler warning about unused parameters.
Change-Id: Ib9f6f371698f50397ad3a646703657d0e016dfe1
Reviewed-by: Lars Knoll <lars.knoll@digia.com>
-rw-r--r-- | src/xmlpatterns/schema/qxsdstatemachine_tpl_p.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/xmlpatterns/schema/qxsdstatemachine_tpl_p.h b/src/xmlpatterns/schema/qxsdstatemachine_tpl_p.h index aa6f978..29759b2 100644 --- a/src/xmlpatterns/schema/qxsdstatemachine_tpl_p.h +++ b/src/xmlpatterns/schema/qxsdstatemachine_tpl_p.h @@ -185,6 +185,9 @@ template <typename TransitionType> template <typename InputType> bool XsdStateMachine<TransitionType>::inputEqualsTransition(InputType input, TransitionType transition) const { + Q_UNUSED(input); + Q_UNUSED(transition); + return false; } |