1
0
Fork 0
mirror of https://gitlab.com/niansa/libjustlm.git synced 2025-03-06 20:49:17 +01:00

Renamed operator ""_MB -> operator ""_MiB

This commit is contained in:
niansa 2023-05-31 20:20:31 +02:00
parent 2d57ade1b8
commit 0142db3f7c
2 changed files with 2 additions and 2 deletions

View file

@ -17,7 +17,7 @@
#include <ggml.h>
constexpr inline
unsigned long long operator ""_MB(unsigned long long bytes) {
unsigned long long operator ""_MiB(unsigned long long bytes) {
return bytes*1024*1024;
}

View file

@ -19,7 +19,7 @@
#include <ggml.h>
inline
unsigned long long operator ""_MB(unsigned long long bytes) {
unsigned long long operator ""_MiB(unsigned long long bytes) {
return bytes*1024*1024;
}