From: tiv Date: Fri, 11 Sep 2020 09:39:53 +0000 (+0300) Subject: The redundant qualification of the method HasModifications() in the definition of... X-Git-Url: http://git.dev.opencascade.org/gitweb/?a=commitdiff_plain;h=f76a9d83af32c0635463fdac91805c056d518029;p=occt-copy.git The redundant qualification of the method HasModifications() in the definition of the class TDocStd_Document is removed. This qualification leads to errors during compilation on Visual Studio 2019. --- diff --git a/src/TDocStd/TDocStd_Document.hxx b/src/TDocStd/TDocStd_Document.hxx index 86ca879536..f8b7b741c4 100644 --- a/src/TDocStd/TDocStd_Document.hxx +++ b/src/TDocStd/TDocStd_Document.hxx @@ -249,7 +249,7 @@ public: Standard_EXPORT void DumpJson (Standard_OStream& theOStream, Standard_Integer theDepth = -1) const; //! Returns true if document has modified attributes since last transaction - Standard_EXPORT Standard_Boolean TDocStd_Document::HasModifications() const; + Standard_EXPORT Standard_Boolean HasModifications() const; DEFINE_STANDARD_RTTIEXT(TDocStd_Document,CDM_Document)