We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be0e812 commit 4bd3012Copy full SHA for 4bd3012
crude_json.cpp
@@ -1,4 +1,4 @@
1
-// Crude implementation of JSON value object and parser.
+// Crude implementation of JSON value object and parser.
2
//
3
// VERSION 0.1
4
@@ -561,7 +561,7 @@ struct value::parser
561
if (end != hex.c_str() + hex.size())
562
return false;
563
564
- c = v;
+ c = static_cast<int>(v);
565
return true;
566
}
567
docs/CHANGELOG.txt
@@ -39,6 +39,8 @@ v0.9.2 (WIP):
39
40
BUGFIX: Examples: Don't use empty string as identifier
41
42
+ BUGFIX: Editor: Clean long to int implicit cast warning in crude_json
43
+
44
45
v0.9.1 (2022-08-27):
46
0 commit comments