mirror of
https://github.com/cookiengineer/audacity
synced 2026-04-04 05:17:47 +02:00
Delete or un-inline some constructors, assignments, others...
... Which will be needed for various reasons for Windows builds of certain modularizations, which will otherwise complain that they can no longer generate them as inlines. In one case, deleted copies require explicitly defaulted moves, but they will work as generated inline.
This commit is contained in:
committed by
Paul Licameli
parent
3060530b4f
commit
fbfccf1393
@@ -107,6 +107,8 @@ private:
|
||||
// I'm a singleton class
|
||||
ModuleManager();
|
||||
~ModuleManager();
|
||||
ModuleManager(const ModuleManager&) PROHIBITED;
|
||||
ModuleManager &operator=(const ModuleManager&) PROHIBITED;
|
||||
|
||||
void InitializeBuiltins();
|
||||
ModuleInterface *LoadModule(const PluginPath & path);
|
||||
|
||||
Reference in New Issue
Block a user