Compare commits

..

No commits in common. "master" and "v1.0.6" have entirely different histories.

4 changed files with 4 additions and 5 deletions

View File

@ -74,7 +74,6 @@ common_headers=(
include/valijson/internal/frozen_value.hpp
include/valijson/internal/json_pointer.hpp
include/valijson/internal/json_reference.hpp
include/valijson/internal/regex.hpp
include/valijson/internal/uri.hpp
include/valijson/utils/file_utils.hpp
include/valijson/utils/utf8_utils.hpp

View File

@ -690,7 +690,7 @@ private:
makeMultipleOfDoubleConstraint(itr->second),
&subschema);
} else {
throwRuntimeError("Expected a numeric value for "
throwRuntimeError("Expected an numeric value for "
" 'divisibleBy' constraint.");
}
} else {
@ -853,7 +853,7 @@ private:
makeMultipleOfDoubleConstraint(itr->second),
&subschema);
} else {
throwRuntimeError("Expected a numeric value for 'multipleOf' constraint.");
throwRuntimeError("Expected an numeric value for 'divisibleBy' constraint.");
}
}

View File

@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.10.0)
cmake_minimum_required(VERSION 3.0)
# Add folder where are supportive functions
set(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake)

View File

@ -5,7 +5,7 @@ git submodule update --init --depth 1 thirdparty
mkdir build
cd build
cmake \
-Dvalijson_BUILD_TESTS=TRUE \
-Dvalijson_BUILD_TESTS=FALSE \
-Dvalijson_BUILD_EXAMPLES=FALSE \
-Dvalijson_EXCLUDE_BOOST=TRUE \
..