diff options
| author | Alan Westbrook <[email protected]> | 2014-01-26 16:22:41 -0800 |
|---|---|---|
| committer | Alan Westbrook <[email protected]> | 2014-01-26 16:22:41 -0800 |
| commit | 572eac974658c50b16f77342082b2074ed03c9ec (patch) | |
| tree | 75cceb4f70983fc1a3a98c135b894c78cadcfc5e /src/json/json_spirit_value.cpp | |
| parent | Merge pull request #96 from ummjackson/Mac (diff) | |
| download | discoin-572eac974658c50b16f77342082b2074ed03c9ec.tar.xz discoin-572eac974658c50b16f77342082b2074ed03c9ec.zip | |
Fix warnings, update version
Fix a sprintf format warning without changing the actual functionality
Putting statics in headers is re-tard-ed (json_spirit_value)
This is alpha 3 of 1.5
Diffstat (limited to 'src/json/json_spirit_value.cpp')
| -rw-r--r-- | src/json/json_spirit_value.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/json/json_spirit_value.cpp b/src/json/json_spirit_value.cpp index 44d2f06a0..53cd96dcb 100644 --- a/src/json/json_spirit_value.cpp +++ b/src/json/json_spirit_value.cpp @@ -6,3 +6,7 @@ // json spirit version 2.00 #include "json_spirit_value.h" + +namespace json_spirit { + const char* Value_type_name[]={"obj", "array", "str", "bool", "int", "real", "null"}; +} |