mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-05 14:31:24 +12:00
fixed_typemap.hpp: make it a bit fool-proof
Require objects to be non-copyable (move is still allowed).
This commit is contained in:
parent
004ebfdaee
commit
52fe86b56c
19 changed files with 121 additions and 57 deletions
|
@ -89,6 +89,10 @@ public:
|
|||
|
||||
patch_engine();
|
||||
|
||||
patch_engine(const patch_engine&) = delete;
|
||||
|
||||
patch_engine& operator=(const patch_engine&) = delete;
|
||||
|
||||
// Returns the directory in which patch_config.yml is located
|
||||
static std::string get_patch_config_path();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue