Skip to content
Snippets Groups Projects
Commit 65043d4d authored by Rye Mutt's avatar Rye Mutt :bread:
Browse files

Fix a small bug

parent 14ba0c19
No related branches found
No related tags found
No related merge requests found
...@@ -86,7 +86,7 @@ const int LL_ERR_NOERR = 0; ...@@ -86,7 +86,7 @@ const int LL_ERR_NOERR = 0;
#endif #endif
#define LL_STATIC_ASSERT(func, msg) static_assert(func, msg) #define LL_STATIC_ASSERT(func, msg) static_assert(func, msg)
#define LL_BAD_TEMPLATE_INSTANTIATION(type, msg) static_assert(false, msg) #define LL_BAD_TEMPLATE_INSTANTIATION(type, msg) static_assert(sizeof(type) != 0 && false, msg)
/** Error Logging Facility /** Error Logging Facility
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment