Have std/json decode numbers
diff --git a/example/jsonptr/jsonptr.cc b/example/jsonptr/jsonptr.cc
index 1b47bd2..f791ba2 100644
--- a/example/jsonptr/jsonptr.cc
+++ b/example/jsonptr/jsonptr.cc
@@ -330,6 +330,10 @@
                            : context::in_dict_after_brace;
         goto continue_loop;
 
+      case 2:
+        TRY(write_dst(pt.data.ptr, pt.data.len));
+        goto after_value;
+
       case 3:
         TRY(handle_string(pt));
         goto after_value;