Skip to content
Snippets Groups Projects
Commit de97a0a7 authored by Recolic Keghart's avatar Recolic Keghart
Browse files

try adjusting *_NONE definition

parent 1dfd1fca
No related branches found
No related tags found
No related merge requests found
...@@ -52,9 +52,9 @@ using namespace runtime_info; ...@@ -52,9 +52,9 @@ using namespace runtime_info;
constexpr KEY_TYPE KEY_NONE = 0xFFFFFFFFFFFFFFFF; constexpr KEY_TYPE KEY_NONE = (KEY_TYPE)(-1);
constexpr KEY_TYPE KEY_MAX = 0xFFFFFFFFFFFFFFFE; constexpr KEY_TYPE KEY_MAX = KEY_NONE - 1;
constexpr SIZE_TYPE SIZE_NONE = 0xFFFFFFFF; constexpr SIZE_TYPE SIZE_NONE = (SIZE_TYPE)(-1);
constexpr VALUE_TYPE VALUE_NONE = 0; constexpr VALUE_TYPE VALUE_NONE = 0;
constexpr KEY_TYPE COL_IDX_NONE = 0xFFFFFFFF; constexpr KEY_TYPE COL_IDX_NONE = 0xFFFFFFFF;
......
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