@tim-janik commented on this pull request.
> @@ -188,6 +188,12 @@ main (int argc, char *argv[])
bench_aida();
return 0;
}
+ if (argc >= 2 && argv[1] && std::string ("--resampler") == argv[1])
+ {
+ Bse::init_async (&argc, argv, argv[0], args);
+ extern int test_resampler (int, char **);
NEVER inline prototypes, ALWAYS use a header file!
Without any exception.
I've once spent days debugging misbehaviour due to mismatching prototype, never again!
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or mute the thread.