json: rename schema directory to constraint

This commit is contained in:
Danny Robson 2018-07-16 13:00:14 +10:00
parent 01ae59c19c
commit 395b5ae557
21 changed files with 21 additions and 21 deletions

View File

@ -300,23 +300,23 @@ list (
json/pointer.hpp json/pointer.hpp
json/schema.cpp json/schema.cpp
json/schema.hpp json/schema.hpp
json/schema/fwd.hpp json/constraint/fwd.hpp
json/schema/base.cpp json/constraint/base.cpp
json/schema/base.hpp json/constraint/base.hpp
json/schema/combine.cpp json/constraint/combine.cpp
json/schema/combine.hpp json/constraint/combine.hpp
json/schema/enum.cpp json/constraint/enum.cpp
json/schema/enum.hpp json/constraint/enum.hpp
json/schema/except.hpp json/constraint/except.hpp
json/schema/introspection.hpp json/constraint/introspection.hpp
json/schema/length.cpp json/constraint/length.cpp
json/schema/length.hpp json/constraint/length.hpp
json/schema/inequality.cpp json/constraint/inequality.cpp
json/schema/inequality.hpp json/constraint/inequality.hpp
json/schema/properties.cpp json/constraint/properties.cpp
json/schema/properties.hpp json/constraint/properties.hpp
json/schema/type.cpp json/constraint/type.cpp
json/schema/type.hpp json/constraint/type.hpp
json/tree.cpp json/tree.cpp
json/tree.hpp json/tree.hpp
json2/fwd.hpp json2/fwd.hpp

View File

@ -541,8 +541,8 @@ json::schema::validate (json::tree::node &data,
/////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////
#include "schema/except.hpp" #include "constraint/except.hpp"
#include "schema/base.hpp" #include "constraint/base.hpp"
#include "../io.hpp" #include "../io.hpp"
#include "../view.hpp" #include "../view.hpp"

View File

@ -18,7 +18,7 @@
#define __UTIL_JSON_SCHEMA_HPP #define __UTIL_JSON_SCHEMA_HPP
#include "fwd.hpp" #include "fwd.hpp"
#include "schema/combine.hpp" #include "constraint/combine.hpp"
#include <experimental/filesystem> #include <experimental/filesystem>

View File

@ -19,7 +19,7 @@
#include "json/schema.hpp" #include "json/schema.hpp"
#include "json/tree.hpp" #include "json/tree.hpp"
#include "json/schema/except.hpp" #include "json/constraint/except.hpp"
#include "io.hpp" #include "io.hpp"