diff options
author | Claudius Holeksa <mail@keldu.de> | 2023-06-15 15:16:00 +0200 |
---|---|---|
committer | Claudius Holeksa <mail@keldu.de> | 2023-06-15 15:16:00 +0200 |
commit | 4260ffa31e58129ad6822eccce8a81ab750bd8b7 (patch) | |
tree | 9f454afe7aea9aa710079715d34ad2348baeec57 /tests | |
parent | 63f6f188aef9b24a771b677daa60ee8f1cb2052b (diff) |
c++,codec: Adding missing dependency for tests and minor change to
unsigned arg
Diffstat (limited to 'tests')
-rw-r--r-- | tests/codec-json.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/codec-json.cpp b/tests/codec-json.cpp index 9cbb7c3..1b6c5d2 100644 --- a/tests/codec-json.cpp +++ b/tests/codec-json.cpp @@ -86,7 +86,7 @@ SAW_TEST("Tuple write"){ SAW_TEST("Array write"){ using namespace saw; - data<schema::TestArray, encode::Native> native{3}; + data<schema::TestArray, encode::Native> native{3u}; data<schema::TestArray, encode::Json> json; native.at(0).set("foo"); |