From 7e64848146c1724b4465381c48c9d189190d1fd5 Mon Sep 17 00:00:00 2001 From: Jon Trulson Date: Fri, 7 Oct 2016 16:04:44 -0600 Subject: [PATCH] bacnetmstp: fix compiler warnings when building python wrappers Signed-off-by: Jon Trulson --- src/bacnetmstp/bacnetmstp.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bacnetmstp/bacnetmstp.hpp b/src/bacnetmstp/bacnetmstp.hpp index 8001dba3..1a748a69 100644 --- a/src/bacnetmstp/bacnetmstp.hpp +++ b/src/bacnetmstp/bacnetmstp.hpp @@ -656,8 +656,8 @@ namespace upm { private: // prevent copying and assignment - BACNETMSTP(BACNETMSTP const &) {}; - BACNETMSTP& operator=(BACNETMSTP const&) {}; + BACNETMSTP(BACNETMSTP const &) = delete; + BACNETMSTP& operator=(BACNETMSTP const&) = delete; // our class instance static BACNETMSTP* m_instance;