chore: activate Wall Werror

This commit is contained in:
rudy
2022-10-28 12:16:15 +02:00
committed by rudy-6-4
parent 6b0f6e9f10
commit 018684fe2a
20 changed files with 61 additions and 84 deletions

View File

@@ -43,17 +43,17 @@ TEST(Support, client_parameters_json_serde) {
params0.inputs = {
{
/*.encryption = */ {{clientlib::SMALL_KEY, 0.00, {4, {1, 2, 3, 4}}}},
/*.shape = */ {32, {1, 2, 3, 4}, 1 * 2 * 3 * 4},
/*.shape = */ {32, {1, 2, 3, 4}, 1 * 2 * 3 * 4, false},
},
{
/*.encryption = */ {{clientlib::SMALL_KEY, 0.00, {5}}},
/*.shape = */ {8, {4, 4, 4, 4}, 4 * 4 * 4 * 4},
/*.encryption = */ {{clientlib::SMALL_KEY, 0.00, {5, {1, 2, 3, 4}}}},
/*.shape = */ {8, {4, 4, 4, 4}, 4 * 4 * 4 * 4, false},
},
};
params0.outputs = {
{
/*.encryption = */ {{clientlib::SMALL_KEY, 0.00, {5}}},
/*.shape = */ {8, {4, 4, 4, 4}, 4 * 4 * 4 * 4},
/*.encryption = */ {{clientlib::SMALL_KEY, 0.00, {5, {1, 2, 3, 4}}}},
/*.shape = */ {8, {4, 4, 4, 4}, 4 * 4 * 4 * 4, false},
},
};
auto json = clientlib::toJSON(params0);