diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-09-27 01:34:49 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-09-27 01:34:49 +0300 |
commit | 68a7dd225969fcdfb9c07b99db43756a2b1dec7c (patch) | |
tree | 644c14f9b178a968a53e742fb5f37aaf29fc062d /src/utils/cast.h | |
parent | d3f3ec92d583fcaecccb500c8940f33d7228ff89 (diff) | |
download | plus-68a7dd225969fcdfb9c07b99db43756a2b1dec7c.tar.gz plus-68a7dd225969fcdfb9c07b99db43756a2b1dec7c.tar.bz2 plus-68a7dd225969fcdfb9c07b99db43756a2b1dec7c.tar.xz plus-68a7dd225969fcdfb9c07b99db43756a2b1dec7c.zip |
Change attributes value type to int64.
Diffstat (limited to 'src/utils/cast.h')
-rw-r--r-- | src/utils/cast.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/utils/cast.h b/src/utils/cast.h index 9b6289ebc..f12f1badb 100644 --- a/src/utils/cast.h +++ b/src/utils/cast.h @@ -28,6 +28,8 @@ #define CAST_U16 static_cast<uint16_t> #define CAST_S32 static_cast<int32_t> #define CAST_U32 static_cast<uint32_t> +#define CAST_S64 static_cast<int64_t> +#define CAST_U64 static_cast<uint64_t> #define CAST_SIZE static_cast<size_t> #endif // UTILS_CAST_H |