netlist: remove printf. (nw)

This commit is contained in:
couriersud 2019-03-02 13:11:37 +01:00
parent afcea65d0f
commit 83a0e93837
2 changed files with 3 additions and 2 deletions

View File

@ -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;

View File

@ -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