You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by cc...@apache.org on 2016/05/17 20:52:07 UTC

[44/50] [abbrv] incubator-mynewt-core git commit: json; Remove json_value_desc, not used anywhere.

json; Remove json_value_desc, not used anywhere.


Project: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/commit/2fb47079
Tree: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/tree/2fb47079
Diff: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/diff/2fb47079

Branch: refs/heads/master
Commit: 2fb470790785d73037b4b80a9a77b0f320f78ce5
Parents: 5df4dc1
Author: Marko Kiiskila <ma...@runtime.io>
Authored: Tue May 17 11:49:47 2016 -0700
Committer: Marko Kiiskila <ma...@runtime.io>
Committed: Tue May 17 11:49:47 2016 -0700

----------------------------------------------------------------------
 libs/json/include/json/json.h | 12 ------------
 1 file changed, 12 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/2fb47079/libs/json/include/json/json.h
----------------------------------------------------------------------
diff --git a/libs/json/include/json/json.h b/libs/json/include/json/json.h
index 1b97d1b..e82ccf8 100644
--- a/libs/json/include/json/json.h
+++ b/libs/json/include/json/json.h
@@ -35,18 +35,6 @@
 #define JSON_VALUE_TYPE_OBJECT (5)
 
 /**
- * For JSON decode, descriptions of the JSON values that
- * need to be parsed.
- */
-struct json_value_desc {
-    char *jv_name;
-    void *jv_ptr;
-    uint16_t jv_len;
-    uint8_t jv_type;
-    uint8_t jv_matched;
-};
-
-/**
  * For encode.  The contents of a JSON value to encode.
  */
 struct json_value {