bacnetmstp: fix compiler warnings when building python wrappers

Signed-off-by: Jon Trulson <jtrulson@ics.com>
This commit is contained in:
Jon Trulson 2016-10-07 16:04:44 -06:00
parent 64b142ecf3
commit 7e64848146

View File

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