jsoncpp: Reset existing files to svn-release-0.5.0

This commit is contained in:
Martin Kröning
2020-06-18 20:35:17 +02:00
parent 0d44b8c7f9
commit 76f805fe9c
4 changed files with 10 additions and 18 deletions
+3 -3
View File
@@ -1,6 +1,6 @@
#include <iostream>
#include "json/value.h"
#include "json/writer.h"
#include <json/value.h>
#include <json/writer.h>
#include <utility>
#include <stdexcept>
#include <cstring>
@@ -15,7 +15,7 @@
#define JSON_ASSERT_UNREACHABLE assert( false )
#define JSON_ASSERT( condition ) assert( condition ); // @todo <= change this into an exception throw
#define JSON_ASSERT_MESSAGE( condition, message ) if (!( condition )) assert(false); /* throw std::runtime_error( message ); */
#define JSON_ASSERT_MESSAGE( condition, message ) if (!( condition )) throw std::runtime_error( message );
namespace Json {