mirror of
https://github.com/holub/mame
synced 2025-06-30 07:58:56 +03:00
netlist: remove printf. (nw)
This commit is contained in:
parent
afcea65d0f
commit
83a0e93837
@ -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;
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user