From f76a9d83af32c0635463fdac91805c056d518029 Mon Sep 17 00:00:00 2001 From: tiv Date: Fri, 11 Sep 2020 12:39:53 +0300 Subject: [PATCH] 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. --- src/TDocStd/TDocStd_Document.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.39.5