fix typos in preprocessor macros

This commit is contained in:
Austin Haigh 2022-11-01 13:29:16 -06:00
parent 78ac8a737d
commit f1ff351828
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 {