From 1fe8ed2b215fa0fe6449f41dbc31035de596eba4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=91=D1=8B=D1=87=D0=BA=D0=BE=D0=B2=20=D0=90=D0=BD=D0=B4?= =?UTF-8?q?=D1=80=D0=B5=D0=B9?= Date: Mon, 12 Aug 2019 13:08:03 +0000 Subject: [PATCH] git-svn-id: svn://db.shs.com.ru/pip@841 12ceb7fc-bf1f-11e4-8940-5bc7170c53b5 --- src_main/core/piobject.cpp | 6 ------ src_main/core/piobject.h | 3 --- 2 files changed, 9 deletions(-) diff --git a/src_main/core/piobject.cpp b/src_main/core/piobject.cpp index 8aa326a6..b332e164 100755 --- a/src_main/core/piobject.cpp +++ b/src_main/core/piobject.cpp @@ -424,12 +424,6 @@ PIMap & PIObject::__meta_data() { } -CRC_32 & PIObject::__meta_crc() { - static CRC_32 ret = standardCRC_32(); - return ret; -} - - void PIObject::callQueuedEvents() { mutex_queue.lock(); PIVector<__QueuedEvent> qe = events_queue; diff --git a/src_main/core/piobject.h b/src_main/core/piobject.h index 2cb83591..5aa6903e 100755 --- a/src_main/core/piobject.h +++ b/src_main/core/piobject.h @@ -30,7 +30,6 @@ #include "pimutex.h" #include "piset.h" #include "piqueue.h" -#include "picrc.h" #ifdef DOXYGEN @@ -777,8 +776,6 @@ public: static PIMutex & __meta_mutex(); static PIMap & __meta_data(); // [hash(classname)]=__MetaData - static CRC_32 & __meta_crc(); - //! \brief Execute all posted events from CONNECTU_QUEUED connections void callQueuedEvents();