summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/netlist/nl_config.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/netlist/nl_config.h')
-rw-r--r--src/emu/netlist/nl_config.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/emu/netlist/nl_config.h b/src/emu/netlist/nl_config.h
index 63f8e8c8c6c..0f73d57b78c 100644
--- a/src/emu/netlist/nl_config.h
+++ b/src/emu/netlist/nl_config.h
@@ -65,10 +65,9 @@ typedef UINT8 netlist_sig_t;
// prevent implicit copying
#define NETLIST_PREVENT_COPYING(_name) \
- private: \
- _name(const _name &); \
- _name &operator=(const _name &); \
-
+ private: \
+ _name(const _name &); \
+ _name &operator=(const _name &);
#if NL_KEEP_STATISTICS
#define add_to_stat(v,x) do { v += (x); } while (0)
#define inc_stat(v) add_to_stat(v, 1)