From 79fbe8110d9869c400775f6d81e413bacb6bdb9b Mon Sep 17 00:00:00 2001 From: Michael Stahl <mst@apache.org> Date: Sun, 28 Aug 2011 22:23:03 +0000 Subject: fix up code so it builds with GCC 4.6: put user-defined default constructors in some classes. remove "mutable" from reference variables. include stddef.h where size_t or ptrdiff_t was not defined. --- dbaccess/source/core/dataaccess/documentdefinition.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'dbaccess') diff --git a/dbaccess/source/core/dataaccess/documentdefinition.hxx b/dbaccess/source/core/dataaccess/documentdefinition.hxx index 76427ea78baf..438774c0cd03 100644 --- a/dbaccess/source/core/dataaccess/documentdefinition.hxx +++ b/dbaccess/source/core/dataaccess/documentdefinition.hxx @@ -397,7 +397,7 @@ private: ODocumentDefinition& m_rDocumentDefinition; const ::com::sun::star::uno::Any m_aOldValue; const ::com::sun::star::uno::Any m_aNewValue; - mutable ::osl::ResettableMutexGuard& m_rClearForNotify; + ::osl::ResettableMutexGuard& m_rClearForNotify; void impl_fireEvent_throw( const sal_Bool i_bVetoable ); }; -- cgit