From 6962609e425f3ef9f4e73d4dabfbf4a0ec157d91 Mon Sep 17 00:00:00 2001 From: Takatoshi Kondo Date: Mon, 30 May 2016 16:07:03 +0900 Subject: [PATCH] Updated v2_0_cpp_visitor (markdown) --- v2_0_cpp_visitor.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v2_0_cpp_visitor.md b/v2_0_cpp_visitor.md index 6e69d7e..8143609 100644 --- a/v2_0_cpp_visitor.md +++ b/v2_0_cpp_visitor.md @@ -26,6 +26,7 @@ struct visitor { bool end_map(); void parse_error(size_t parsed_offset, size_t error_offset); void insufficient_bytes(size_t parsed_offset, size_t error_offset); + bool referenced() const; // Only when you want to use the visitor with a parser }; ``` @@ -91,7 +92,6 @@ struct null_visitor { } void insufficient_bytes(size_t /*parsed_offset*/, size_t /*error_offset*/) { } - bool referenced() const; // Only when you want to use the visitor with a parser }; ```