Merge pull request #169 from AustinHaigh-Hach/fix-typos

This commit is contained in:
Tristan Penman 2022-11-02 09:25:22 +11:00 committed by GitHub
commit 65ba76e493
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 5 additions and 5 deletions

View File

@ -10561,7 +10561,7 @@ inline bool loadDocument(const std::string &path, nlohmann::json &document)
}
// Parse schema
#if VALIJSON_USE_EXCEPTION
#if VALIJSON_USE_EXCEPTIONS
try {
document = nlohmann::json::parse(file);
} catch (std::invalid_argument const& exception) {

View File

@ -20,7 +20,7 @@ inline bool loadDocument(const std::string &path, boost::json::value &document)
}
// Parse schema
#if VALIJSON_USE_EXCEPTION
#if VALIJSON_USE_EXCEPTIONS
try {
#endif
boost::json::error_code errorCode;
@ -30,7 +30,7 @@ inline bool loadDocument(const std::string &path, boost::json::value &document)
std::cerr << "Boost.JSON parsing error: " << errorCode.message();
return false;
}
#if VALIJSON_USE_EXCEPTION
#if VALIJSON_USE_EXCEPTIONS
} catch (std::exception const & exception) {
std::cerr << "Boost.JSON parsing exception: " << exception.what();
return false;

View File

@ -20,7 +20,7 @@ inline bool loadDocument(const std::string &path, nlohmann::json &document)
}
// Parse schema
#if VALIJSON_USE_EXCEPTION
#if VALIJSON_USE_EXCEPTIONS
try {
document = nlohmann::json::parse(file);
} catch (std::invalid_argument const& exception) {

View File

@ -24,7 +24,7 @@
#include <valijson/utils/file_utils.hpp>
#include <valijson/exceptions.hpp>
#if !VALIJSON_USE_EXCEPTION
#if !VALIJSON_USE_EXCEPTIONS
namespace boost {