mirror of
https://github.com/open-source-parsers/jsoncpp.git
synced 2024-12-13 18:27:10 +01:00
00b979f086
This patch fixes a build issue on CMake, presumably due to the new glibc having a features.h include file. This patch renames our features.h file to avoid a name collision.
16 lines
449 B
C
16 lines
449 B
C
// Copyright 2007-2010 Baptiste Lepilleur and The JsonCpp Authors
|
|
// Distributed under MIT license, or public domain if desired and
|
|
// recognized in your jurisdiction.
|
|
// See file LICENSE for detail or copy at http://jsoncpp.sourceforge.net/LICENSE
|
|
|
|
#ifndef JSON_JSON_H_INCLUDED
|
|
#define JSON_JSON_H_INCLUDED
|
|
|
|
#include "autolink.h"
|
|
#include "json_features.h"
|
|
#include "reader.h"
|
|
#include "value.h"
|
|
#include "writer.h"
|
|
|
|
#endif // JSON_JSON_H_INCLUDED
|