diff options
Diffstat (limited to 'src/core/parser/stack/Handler.cpp')
-rw-r--r-- | src/core/parser/stack/Handler.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/core/parser/stack/Handler.cpp b/src/core/parser/stack/Handler.cpp index c01e74c..ef6ca8b 100644 --- a/src/core/parser/stack/Handler.cpp +++ b/src/core/parser/stack/Handler.cpp @@ -109,8 +109,7 @@ bool EmptyHandler::startCommand(Variant::mapType &args) return true; } -bool EmptyHandler::startAnnotation(Variant::mapType &args, - Handler::AnnotationType annotationType) +bool EmptyHandler::startAnnotation(Variant::mapType &args) { // Do not support annotations. Annotations are too complicated for poor // EmptyHandler. @@ -165,8 +164,7 @@ bool StaticHandler::startCommand(Variant::mapType &args) return true; } -bool StaticHandler::startAnnotation(Variant::mapType &args, - Handler::AnnotationType annotationType) +bool StaticHandler::startAnnotation(Variant::mapType &args) { return false; } |