Fix include guards in rippled.

This commit is contained in:
Tom Ritchford
2015-01-28 17:47:36 -05:00
committed by Vinnie Falco
parent c3809ece67
commit c3ae4da83a
159 changed files with 425 additions and 313 deletions

View File

@@ -17,8 +17,8 @@
*/
//==============================================================================
#ifndef JSONCPPTL_ASSERT_H_INCLUDED
#define JSONCPPTL_ASSERT_H_INCLUDED
#ifndef RIPPLE_JSON_JSON_ASSERT_H_INCLUDED
#define RIPPLE_JSON_JSON_ASSERT_H_INCLUDED
#define JSON_ASSERT_UNREACHABLE assert( false )
#define JSON_ASSERT( condition ) assert( condition ); // @todo <= change this into an exception throw

View File

@@ -17,8 +17,8 @@
*/
//==============================================================================
#ifndef JSON_AUTOLINK_H_INCLUDED
#define JSON_AUTOLINK_H_INCLUDED
#ifndef RIPPLE_JSON_JSON_AUTOLINK_H_INCLUDED
#define RIPPLE_JSON_JSON_AUTOLINK_H_INCLUDED
// VFALCO TODO remove this file
#error This file is deprecated!

View File

@@ -17,8 +17,8 @@
*/
//==============================================================================
#ifndef JSONCPP_BATCHALLOCATOR_H_INCLUDED
#define JSONCPP_BATCHALLOCATOR_H_INCLUDED
#ifndef RIPPLE_JSON_JSON_BATCHALLOCATOR_H_INCLUDED
#define RIPPLE_JSON_JSON_BATCHALLOCATOR_H_INCLUDED
#ifndef JSONCPP_DOC_EXCLUDE_IMPLEMENTATION