Remove dependency on a library for a single function

This commit is contained in:
loki
2020-02-01 10:25:37 +01:00
parent c71d2739b1
commit 753f57c71b
7 changed files with 31 additions and 5 deletions

View File

@@ -501,4 +501,6 @@ void freeInput(void *p) {
auto *input = (input_raw_t*)p;
delete input;
}
std::unique_ptr<deinit_t> init() { return nullptr; }
}