Commit 75a18508 authored by Michał Janiszewski's avatar Michał Janiszewski Committed by Paul Yang

Remove superfluous const from return type in json_stream_parser.h (#5295)

parent 1c2eba3e
......@@ -95,7 +95,7 @@ class PROTOBUF_EXPORT JsonStreamParser {
private:
friend class JsonStreamParserTest;
// Return the current recursion depth.
const int recursion_depth() { return recursion_depth_; }
int recursion_depth() { return recursion_depth_; }
enum TokenType {
BEGIN_STRING, // " or '
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment