Updated v2_0_cpp_visitor (markdown)

Takatoshi Kondo
2016-05-30 16:07:03 +09:00
parent 0e2a581225
commit 6962609e42
+1 -1
@@ -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
};
```