mirror of
https://github.com/g-truc/glm.git
synced 2025-04-06 14:05:01 +00:00
Fix compare that is always true
This commit is contained in:
parent
33b0eb9fa3
commit
8ebe4b5e57
1 changed files with 1 additions and 1 deletions
|
@ -22,7 +22,7 @@ namespace detail
|
|||
std::size_t const STRING_BUFFER(4096);
|
||||
|
||||
assert(message != NULL);
|
||||
assert(strlen(message) >= 0 && strlen(message) < STRING_BUFFER);
|
||||
assert(strlen(message) < STRING_BUFFER);
|
||||
|
||||
char buffer[STRING_BUFFER];
|
||||
va_list list;
|
||||
|
|
Loading…
Add table
Reference in a new issue