소스 검색

Correct static assert text

Kajetan Johannes Hammerle 1 년 전
부모
커밋
a2666cb01e
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      include/core/BitArray.h

+ 1 - 1
include/core/BitArray.h

@@ -9,7 +9,7 @@ typedef struct {
     u64* data;
 } CoreBitArray;
 
-static_assert(sizeof(CoreBitArray) == 16, "wusi");
+static_assert(sizeof(CoreBitArray) == 16, "invalid bit array size");
 
 #define CORE_BIT_ARRAY ((CoreBitArray){0, 0, nullptr})
 void coreCopyBitArray(CoreBitArray* a, const CoreBitArray* other);