diff options
| author | Clement Sibille <clements+git@lisible.xyz> | 2024-05-20 23:08:52 +0900 |
|---|---|---|
| committer | Clement Sibille <clements+git@lisible.xyz> | 2024-05-20 23:08:52 +0900 |
| commit | 520271db3fbf7f0cf488322a024c0f2f3cfecdc9 (patch) | |
| tree | d43971d53b4dc38b8c909332c8a3520866783fb2 /src/lisiblestd/vec.h | |
| parent | 06adbda82803d81f565eb72b42f35339eb5c2720 (diff) | |
Remove LOG0 macros
Now LOG can be used in all cases
Diffstat (limited to 'src/lisiblestd/vec.h')
| -rw-r--r-- | src/lisiblestd/vec.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lisiblestd/vec.h b/src/lisiblestd/vec.h index 6592bc4..3829798 100644 --- a/src/lisiblestd/vec.h +++ b/src/lisiblestd/vec.h @@ -57,7 +57,7 @@ new_capacity * sizeof(T)); \ if (!vec->data) { \ /* TODO maybe improve that error handling? */ \ - LOG0_ERROR("Vec reallocation failed, no memory left"); \ + LOG_ERROR("Vec reallocation failed, no memory left"); \ abort(); \ } \ vec->capacity = new_capacity; \ |
