diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/netlist/plib/palloc.h | 2 | ||||
-rw-r--r-- | src/lib/netlist/plib/pconfig.h | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/src/lib/netlist/plib/palloc.h b/src/lib/netlist/plib/palloc.h index f10fd548817..830ce3ec525 100644 --- a/src/lib/netlist/plib/palloc.h +++ b/src/lib/netlist/plib/palloc.h @@ -191,7 +191,7 @@ namespace plib { ~arena_allocator() noexcept = default; - arena_allocator(const arena_allocator &rhs) noexcept : m_a(rhs.m_a) { printf("copy called\n"); }//= default; + arena_allocator(const arena_allocator &rhs) noexcept = default; arena_allocator& operator=(const arena_allocator&) noexcept = delete; arena_allocator(arena_allocator&&) noexcept = default; diff --git a/src/lib/netlist/plib/pconfig.h b/src/lib/netlist/plib/pconfig.h index c5a83718395..d66b342f815 100644 --- a/src/lib/netlist/plib/pconfig.h +++ b/src/lib/netlist/plib/pconfig.h @@ -53,7 +53,8 @@ #define PALIGNAS_CACHELINE() PALIGNAS(PALIGN_CACHELINE) #define PALIGNAS_VECTOROPT() PALIGNAS(PALIGN_VECTOROPT) -/* Breaks mame build on windows due to -Wattribute */ +/* Breaks mame build on windows due to -Wattribute + * FIXME: no error on cross-compile - need further checks */ #if defined(_WIN32) && defined(__GNUC__) #define PALIGNAS(x) #else |