summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/netlist/plib/pconfig.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/netlist/plib/pconfig.h')
-rw-r--r--src/lib/netlist/plib/pconfig.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/lib/netlist/plib/pconfig.h b/src/lib/netlist/plib/pconfig.h
index 71b4b4d955b..105463fe489 100644
--- a/src/lib/netlist/plib/pconfig.h
+++ b/src/lib/netlist/plib/pconfig.h
@@ -51,30 +51,6 @@ typedef __int128_t INT128;
// Standard defines
//============================================================
-// prevent implicit copying
-#if 0
-#define P_PREVENT_COPYING(name) \
- private: \
- name(const name &); \
- name(const name &&); \
- name &operator=(const name &);
-#else
-
-namespace plib
-{
- struct nocopyassignmove
- {
- protected:
- nocopyassignmove() = default;
- ~nocopyassignmove() = default;
- private:
- nocopyassignmove(const nocopyassignmove &) = delete;
- nocopyassignmove(nocopyassignmove &&) = delete;
- nocopyassignmove &operator=(const nocopyassignmove &) = delete;
- };
-}
-#endif
-
//============================================================
// Pointer to Member Function
//============================================================