diff options
author | Mitya Selivanov <0x7fffff@guattari.ru> | 2022-08-07 09:08:22 +0400 |
---|---|---|
committer | Mitya Selivanov <0x7fffff@guattari.ru> | 2022-08-07 09:08:22 +0400 |
commit | 3c5f3944a6edf5880ebea580a547c284641e5188 (patch) | |
tree | 5161aace1577298975fe91fbc712518561b0dba9 /source/test/unittests | |
parent | 05630cf10cc01a237131989248261149f03fc8ab (diff) | |
download | kit-3c5f3944a6edf5880ebea580a547c284641e5188.zip |
[msvc] Remove typeof
Diffstat (limited to 'source/test/unittests')
-rw-r--r-- | source/test/unittests/array_ref.test.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/test/unittests/array_ref.test.c b/source/test/unittests/array_ref.test.c index 27b754b..62556f3 100644 --- a/source/test/unittests/array_ref.test.c +++ b/source/test/unittests/array_ref.test.c @@ -5,7 +5,7 @@ TEST("array ref const wrap") { int foo[] = { 1, 2, 3 }; - AR_CONST_WRAP(ref, foo); + AR_CONST_WRAP(ref, int, foo); REQUIRE(ref.size == 3); REQUIRE(ref.values[0] == 1); @@ -15,7 +15,7 @@ TEST("array ref const wrap") { TEST("array ref wrap") { int foo[] = { 1, 2, 3 }; - AR_WRAP(ref, foo); + AR_WRAP(ref, int, foo); REQUIRE(ref.size == 3); REQUIRE(ref.values[0] == 1); |