debug: rename unusual to warn
unusual is a stupid name
This commit is contained in:
parent
7cd20bb64d
commit
de483670c4
20
debug.cpp
20
debug.cpp
@ -74,9 +74,25 @@ detail::unreachable (const char *msg)
|
|||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
void
|
void
|
||||||
unusual (void)
|
warn (void)
|
||||||
{
|
{
|
||||||
panic ("Unusual code path found.");
|
warn ("Unusual code path found.");
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
//-----------------------------------------------------------------------------
|
||||||
|
void
|
||||||
|
warn (const std::string &msg)
|
||||||
|
{
|
||||||
|
warn (msg.c_str ());
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
//-----------------------------------------------------------------------------
|
||||||
|
void
|
||||||
|
warn (const char *msg)
|
||||||
|
{
|
||||||
|
LOG_WARN (msg);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -304,7 +304,11 @@ constexpr void not_implemented [[noreturn]] (const char *msg);
|
|||||||
constexpr void unreachable [[noreturn]] (void);
|
constexpr void unreachable [[noreturn]] (void);
|
||||||
constexpr void unreachable [[noreturn]] (const char*);
|
constexpr void unreachable [[noreturn]] (const char*);
|
||||||
|
|
||||||
void unusual (void);
|
|
||||||
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
void warn (void);
|
||||||
|
void warn (const std::string&);
|
||||||
|
void warn (const char *);
|
||||||
|
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
Loading…
Reference in New Issue
Block a user