Remove tabs for spaces
This commit is contained in:
parent
a18eef8d31
commit
0207d7e5fa
@ -507,8 +507,8 @@ template<class Exception>
|
|||||||
void try_throw_exception(exception* ex)
|
void try_throw_exception(exception* ex)
|
||||||
{
|
{
|
||||||
#ifdef JSON_EXCEPTIONS_ENABLED
|
#ifdef JSON_EXCEPTIONS_ENABLED
|
||||||
// Only use RTTI if necessary (exceptions are enabled). This way
|
// Only use RTTI if necessary (exceptions are enabled). This way
|
||||||
// can be compiled with no RTTI.
|
// can be compiled with no RTTI.
|
||||||
Exception* down = dynamic_cast<Exception*>(ex);
|
Exception* down = dynamic_cast<Exception*>(ex);
|
||||||
if(down != nullptr)
|
if(down != nullptr)
|
||||||
{
|
{
|
||||||
@ -516,7 +516,7 @@ void try_throw_exception(exception* ex)
|
|||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
ex = ex; // suppress unreferenced formal parameter warnings
|
ex = ex; // suppress unreferenced formal parameter warnings
|
||||||
std::abort();
|
std::abort();
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user