From a1aaed5a84e5206032495ee3d7447847aa8c9515 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= Date: Thu, 14 May 2020 11:11:27 +0200 Subject: Remove redundant void argument lists Using clang-tidy's `modernize-redundant-void-arg`. https://clang.llvm.org/extra/clang-tidy/checks/modernize-redundant-void-arg.html --- main/tests/test_ordered_hash_map.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'main/tests/test_ordered_hash_map.cpp') diff --git a/main/tests/test_ordered_hash_map.cpp b/main/tests/test_ordered_hash_map.cpp index 0720eebaf9..e909626243 100644 --- a/main/tests/test_ordered_hash_map.cpp +++ b/main/tests/test_ordered_hash_map.cpp @@ -130,7 +130,7 @@ bool test_const_iteration() { return test_const_iteration(map); } -typedef bool (*TestFunc)(void); +typedef bool (*TestFunc)(); TestFunc test_funcs[] = { -- cgit v1.2.3