Replace #include <stdio.h> with #include <cstdio> to solve gcc4mbed compiler problem
Fork of MbedJSONValue by
Diff: MbedJSONValue.h
- Revision:
- 4:10a99cdf7846
- Parent:
- 3:f2ffae08b963
--- a/MbedJSONValue.h Thu Sep 22 10:55:41 2011 +0000
+++ b/MbedJSONValue.h Thu Sep 22 10:57:37 2011 +0000
@@ -111,8 +111,8 @@
TypeInt, /*!< Integer */
TypeDouble, /*!< Double */
TypeString, /*!< String */
- TypeArray, /*!< Array of Type */
- TypeObject /*!< Object */
+ TypeArray, /*!< Array (contains MbedJSONValue) */
+ TypeObject /*!< Object (contains MbedJSONValue identified by a name)*/
};
/**
