mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-09 08:25:16 +00: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
|
|
@ -101,6 +101,12 @@ const ppu_static_module* ppu_module_manager::get_module(const std::string& name)
|
|||
// Global linkage information
|
||||
struct ppu_linkage_info
|
||||
{
|
||||
ppu_linkage_info() = default;
|
||||
|
||||
ppu_linkage_info(const ppu_linkage_info&) = delete;
|
||||
|
||||
ppu_linkage_info& operator=(const ppu_linkage_info&) = delete;
|
||||
|
||||
struct module_data
|
||||
{
|
||||
struct info
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue