diff options
author | David Robillard <d@drobilla.net> | 2020-07-19 17:13:14 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-08-01 11:50:43 +0200 |
commit | b453818f17a84c01d679088e5a377e244a231981 (patch) | |
tree | 66e0c71912fb975fb753905a7c9b1efa1f5a85a8 /tests | |
parent | 381c4a77fe5864cd3aed3854b75acf2a52f6a74d (diff) | |
download | ingen-b453818f17a84c01d679088e5a377e244a231981.tar.gz ingen-b453818f17a84c01d679088e5a377e244a231981.tar.bz2 ingen-b453818f17a84c01d679088e5a377e244a231981.zip |
Make set_bundle_path_from_code take a function pointer
Diffstat (limited to 'tests')
-rw-r--r-- | tests/ingen_bench.cpp | 2 | ||||
-rw-r--r-- | tests/ingen_test.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/ingen_bench.cpp b/tests/ingen_bench.cpp index e0232b01..0a042f94 100644 --- a/tests/ingen_bench.cpp +++ b/tests/ingen_bench.cpp @@ -59,7 +59,7 @@ real_path(const char* path) int main(int argc, char** argv) { - set_bundle_path_from_code((void*)&ingen_try); + set_bundle_path_from_code(reinterpret_cast<void(*)()>(&ingen_try)); // Create world try { diff --git a/tests/ingen_test.cpp b/tests/ingen_test.cpp index eade1194..4d9823bc 100644 --- a/tests/ingen_test.cpp +++ b/tests/ingen_test.cpp @@ -74,7 +74,7 @@ real_file_path(const char* path) int main(int argc, char** argv) { - set_bundle_path_from_code((void*)&ingen_try); + set_bundle_path_from_code(reinterpret_cast<void(*)()>(&ingen_try)); // Create world try { |