From: mpv Date: Mon, 11 Jan 2021 11:58:55 +0000 (+0300) Subject: # fixes for the compilation errors and warnings X-Git-Url: http://git.dev.opencascade.org/gitweb/?a=commitdiff_plain;h=cb669e2a201ae9daaf3d7261bd7ac008cfe3cace;p=occt-copy.git # fixes for the compilation errors and warnings --- diff --git a/src/BinDrivers/BinDrivers_DocumentRetrievalDriver.hxx b/src/BinDrivers/BinDrivers_DocumentRetrievalDriver.hxx index b7c51d8f7b..163a092323 100644 --- a/src/BinDrivers/BinDrivers_DocumentRetrievalDriver.hxx +++ b/src/BinDrivers/BinDrivers_DocumentRetrievalDriver.hxx @@ -58,7 +58,8 @@ public: Standard_EXPORT virtual void Clear() Standard_OVERRIDE; //! Enables reading in the quick part access mode. - Standard_EXPORT virtual void EnableQuickPartReading(const Handle(Message_Messenger)& theMessageDriver, Standard_Boolean theValue); + Standard_EXPORT virtual void EnableQuickPartReading + (const Handle(Message_Messenger)& theMessageDriver, Standard_Boolean theValue) Standard_OVERRIDE; DEFINE_STANDARD_RTTIEXT(BinDrivers_DocumentRetrievalDriver,BinLDrivers_DocumentRetrievalDriver) diff --git a/src/BinLDrivers/BinLDrivers_DocumentStorageDriver.cxx b/src/BinLDrivers/BinLDrivers_DocumentStorageDriver.cxx index 53f3e99f29..0b1916c02d 100644 --- a/src/BinLDrivers/BinLDrivers_DocumentStorageDriver.cxx +++ b/src/BinLDrivers/BinLDrivers_DocumentStorageDriver.cxx @@ -55,7 +55,7 @@ IMPLEMENT_STANDARD_RTTIEXT(BinLDrivers_DocumentStorageDriver,PCDM_StorageDriver) //purpose : Constructor //======================================================================= -BinLDrivers_DocumentStorageDriver::BinLDrivers_DocumentStorageDriver () : myIsQuickPart(Standard_True) +BinLDrivers_DocumentStorageDriver::BinLDrivers_DocumentStorageDriver() { } diff --git a/src/BinLDrivers/BinLDrivers_DocumentStorageDriver.hxx b/src/BinLDrivers/BinLDrivers_DocumentStorageDriver.hxx index fc7eb7c24e..64beca5ac4 100644 --- a/src/BinLDrivers/BinLDrivers_DocumentStorageDriver.hxx +++ b/src/BinLDrivers/BinLDrivers_DocumentStorageDriver.hxx @@ -126,7 +126,6 @@ private: TColStd_IndexedMapOfTransient myTypesMap; BinLDrivers_VectorOfDocumentSection mySections; TCollection_ExtendedString myFileName; - Standard_Boolean myIsQuickPart; //! Sizes of labels and some attributes that will be stored in the second pass NCollection_List mySizesToWrite; };