tqchen commented on code in PR #78:
URL: https://github.com/apache/tvm-ffi/pull/78#discussion_r2404456739


##########
src/ffi/extra/json_parser.cc:
##########
@@ -630,7 +632,7 @@ class JSONParser {
       return true;
     }
     // non-empty object
-    while ((next_char = ctx_.Peek()) != -1) {
+    while (ctx_.Peek() != -1) {

Review Comment:
   there is next char query that immediately follows this, remove next_char 
assignment may leads to an issue here



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to