소스 검색

test: minor changes

skypjack 4 달 전
부모
커밋
6852415ffc
1개의 변경된 파일5개의 추가작업 그리고 5개의 파일을 삭제
  1. 5 5
      test/common/meta_traits.h

+ 5 - 5
test/common/meta_traits.h

@@ -5,11 +5,11 @@
 
 namespace test {
 
-enum class meta_traits {
-    none = 0x0000,
-    one = 0x0001,
-    two = 0x0002,
-    three = 0x0100,
+enum class meta_traits : std::uint8_t {
+    none = 0x00,
+    one = 0x01,
+    two = 0x02,
+    three = 0x04,
     _entt_enum_as_bitmask
 };