1
1
/*
2
- * Copyright (C) 2020 Linux Studio Plugins Project <https://lsp-plug.in/>
3
- * (C) 2020 Vladimir Sadovnikov <[email protected] >
2
+ * Copyright (C) 2025 Linux Studio Plugins Project <https://lsp-plug.in/>
3
+ * (C) 2025 Vladimir Sadovnikov <[email protected] >
4
4
*
5
5
* This file is part of lsp-test-fw
6
6
* Created on: 22 мар. 2020 г.
@@ -208,7 +208,9 @@ namespace lsp
208
208
test->configure (pCfg);
209
209
start_memcheck (test);
210
210
test->init ();
211
- test->execute (pCfg->args .size (), cfg->args .array <const char >());
211
+ test->execute (
212
+ int (pCfg->args .size ()),
213
+ cfg->args .array <const char >());
212
214
test->destroy ();
213
215
end_memcheck ();
214
216
}
@@ -233,7 +235,9 @@ namespace lsp
233
235
test->configure (pCfg);
234
236
start_memcheck (test);
235
237
test->init ();
236
- test->execute (pCfg->args .size (), cfg->args .array <const char >());
238
+ test->execute (
239
+ int (pCfg->args .size ()),
240
+ cfg->args .array <const char >());
237
241
test->destroy ();
238
242
end_memcheck ();
239
243
@@ -268,7 +272,9 @@ namespace lsp
268
272
test->configure (pCfg);
269
273
start_memcheck (test);
270
274
test->init ();
271
- test->execute (pCfg->args .size (), cfg->args .array <const char >());
275
+ test->execute (
276
+ int (pCfg->args .size ()),
277
+ cfg->args .array <const char >());
272
278
test->destroy ();
273
279
end_memcheck ();
274
280
@@ -680,7 +686,8 @@ namespace lsp
680
686
}
681
687
682
688
#endif /* LSP_TEST_FW_PLATFORM_UNIX_COMPATIBLE */
683
- }
684
- }
689
+
690
+ } /* namespace test */
691
+ } /* namespace lsp */
685
692
686
693
0 commit comments