mirror of
https://github.com/open-source-parsers/jsoncpp.git
synced 2025-10-18 03:29:46 +02:00
Improve code comment formatting (Issue #985)
This commit is contained in:

committed by
Jordan Bayles

parent
b3507948e2
commit
483eba84a7
@@ -235,9 +235,7 @@ LogicError::LogicError(String const& msg) : Exception(msg) {}
|
||||
[[noreturn]] void throwRuntimeError(String const& msg) {
|
||||
throw RuntimeError(msg);
|
||||
}
|
||||
[[noreturn]] void throwLogicError(String const& msg) {
|
||||
throw LogicError(msg);
|
||||
}
|
||||
[[noreturn]] void throwLogicError(String const& msg) { throw LogicError(msg); }
|
||||
#else // !JSON_USE_EXCEPTION
|
||||
[[noreturn]] void throwRuntimeError(String const& msg) { abort(); }
|
||||
[[noreturn]] void throwLogicError(String const& msg) { abort(); }
|
||||
|
Reference in New Issue
Block a user