summaryrefslogtreecommitdiff
path: root/upb/json/parser.rl
diff options
context:
space:
mode:
authorJoshua Haberman <jhaberman@gmail.com>2019-03-27 12:52:33 -0700
committerGitHub <noreply@github.com>2019-03-27 12:52:33 -0700
commit928ef7f2c02f18d9945dd750884dffbdebef1b98 (patch)
treed3b71619bfa0b8a91854045c01ce8b5cd15ae403 /upb/json/parser.rl
parent00f96cb9475228ecacd9be1660f4f8d9d7b24038 (diff)
Removed reflection and other extraneous things from the core library. (#158)
* Removed reflection and other extraneous things from the core library. * Added missing files and ran buildifier. * New CMakeLists.txt. * Made table its own cc_library() for internal usage.
Diffstat (limited to 'upb/json/parser.rl')
-rw-r--r--upb/json/parser.rl2
1 files changed, 0 insertions, 2 deletions
diff --git a/upb/json/parser.rl b/upb/json/parser.rl
index e7c456a..a48a47d 100644
--- a/upb/json/parser.rl
+++ b/upb/json/parser.rl
@@ -1531,7 +1531,6 @@ static bool end_duration_base(upb_json_parser *p, const char *ptr) {
static int parse_timestamp_number(upb_json_parser *p) {
size_t len;
const char *buf;
- char *end;
int val;
/* atoi() and friends unfortunately do not support specifying the length of
@@ -2007,7 +2006,6 @@ static void end_any_member(upb_json_parser *p, const char *ptr) {
static bool start_subobject(upb_json_parser *p) {
if (p->top->is_unknown_field) {
- upb_jsonparser_frame *inner;
if (!check_stack(p)) return false;
p->top = start_jsonparser_frame(p);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback