Skip to content

Commit 63b7b11

Browse files
author
Blake Gross
committed
Fixed spacing and readded in no return declspec
1 parent 41f0998 commit 63b7b11

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

Release/src/json/json_parsing.cpp

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,14 +53,16 @@ namespace json
5353
namespace details
5454
{
5555

56-
57-
58-
5956
//
6057
// JSON Parsing
6158
//
6259

6360
template <typename Token>
61+
#if defined(_MS_WINDOWS)
62+
__declspec(noreturn)
63+
#else
64+
__attribute__((noreturn))
65+
#endif
6466
void CreateError(Token &tk, const utility::string_t &message)
6567
{
6668
utility::ostringstream_t os;

0 commit comments

Comments
 (0)