diff options
author | David Robillard <d@drobilla.net> | 2022-09-09 13:20:41 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-09-09 13:22:42 -0400 |
commit | a459db9bf692e11c2d4ecb6047c2878cdcbeb2bd (patch) | |
tree | ad2c552f5fc43ba99a35d93f7d9ab58f5abef695 /include/lv2/state | |
parent | 24327302723df7c9d32d9a540cd1f586489ea616 (diff) | |
download | lv2-a459db9bf692e11c2d4ecb6047c2878cdcbeb2bd.tar.xz |
Use uppercase integer literal suffixes
Diffstat (limited to 'include/lv2/state')
-rw-r--r-- | include/lv2/state/state.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/lv2/state/state.h b/include/lv2/state/state.h index 4cbf54d..9c5d9d8 100644 --- a/include/lv2/state/state.h +++ b/include/lv2/state/state.h @@ -69,7 +69,7 @@ typedef enum { Implementations MUST NOT attempt to copy or serialise a non-POD value if they do not understand its type (and thus know how to correctly do so). */ - LV2_STATE_IS_POD = 1u << 0u, + LV2_STATE_IS_POD = 1U << 0U, /** Portable (architecture independent) data. @@ -80,7 +80,7 @@ typedef enum { values MUST NOT depend on architecture-specific properties like endianness or alignment. Portable values MUST NOT contain filenames. */ - LV2_STATE_IS_PORTABLE = 1u << 1u, + LV2_STATE_IS_PORTABLE = 1U << 1U, /** Native data. @@ -91,7 +91,7 @@ typedef enum { most efficient representation possible and not worry about serialisation and portability. */ - LV2_STATE_IS_NATIVE = 1u << 2u + LV2_STATE_IS_NATIVE = 1U << 2U } LV2_State_Flags; /** A status code for state functions. */ |