From 9558337807e2c351dfd88c5e00110e868959233b Mon Sep 17 00:00:00 2001 From: Jens Breitbart Date: Mon, 2 Jan 2017 14:23:42 +0100 Subject: [PATCH] Fixes -Wdocumentation warning. yaml-cpp/parser.h:50:65: warning: parameter 'eventHandler}.' not found in the function declaration [-Wdocumentation] * Handles the next document by calling events on the {@param eventHandler}. ^~~~~~~~~~~~~~ yaml-cpp/parser.h:50:65: note: did you mean 'eventHandler'? * Handles the next document by calling events on the {@param eventHandler}. ^~~~~~~~~~~~~~ eventHandler --- include/yaml-cpp/parser.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/yaml-cpp/parser.h b/include/yaml-cpp/parser.h index 0e8a73e..ceac22d 100644 --- a/include/yaml-cpp/parser.h +++ b/include/yaml-cpp/parser.h @@ -47,7 +47,7 @@ class YAML_CPP_API Parser : private noncopyable { void Load(std::istream& in); /** - * Handles the next document by calling events on the {@param eventHandler}. + * Handles the next document by calling events on the {@code eventHandler}. * * @throw a ParserException on error. * @return false if there are no more documents