View | Details | Raw Unified | Return to issue 16695
Collapse All | Expand All

(-)inc/comphelper/IdPropArrayHelper.hxx (-2 / +3 lines)
Lines 129-135 Link Here
129
	};
129
	};
130
130
131
	//------------------------------------------------------------------
131
	//------------------------------------------------------------------
132
#ifndef MACOSX
132
// do NOT compile these on Mac OS X with gcc 2.95, but DO compile for all others
133
#if !defined( MACOSX ) || (defined(MACOSX) && (__GNUC__ >= 3))
133
	template<class TYPE>
134
	template<class TYPE>
134
	sal_Int32						OIdPropertyArrayUsageHelper< TYPE >::s_nRefCount	= 0;
135
	sal_Int32						OIdPropertyArrayUsageHelper< TYPE >::s_nRefCount	= 0;
135
136
Lines 138-144 Link Here
138
139
139
	template<class TYPE>
140
	template<class TYPE>
140
	::osl::Mutex					OIdPropertyArrayUsageHelper< TYPE >::s_aMutex;
141
	::osl::Mutex					OIdPropertyArrayUsageHelper< TYPE >::s_aMutex;
141
#endif MACOSX
142
#endif
142
	//------------------------------------------------------------------
143
	//------------------------------------------------------------------
143
	template <class TYPE>
144
	template <class TYPE>
144
	OIdPropertyArrayUsageHelper<TYPE>::OIdPropertyArrayUsageHelper()
145
	OIdPropertyArrayUsageHelper<TYPE>::OIdPropertyArrayUsageHelper()
(-)inc/comphelper/proparrhlp_impl.hxx (-1 / +2 lines)
Lines 64-70 Link Here
64
// protection
64
// protection
65
65
66
//------------------------------------------------------------------
66
//------------------------------------------------------------------
67
#ifndef MACOSX
67
// do NOT compile these on Mac OS X with gcc 2.95, but DO compile for all others
68
#if !defined( MACOSX ) || (defined(MACOSX) && (__GNUC__ >= 3))
68
69
69
template<class TYPE> 
70
template<class TYPE> 
70
sal_Int32						OPropertyArrayUsageHelper< TYPE >::s_nRefCount	= 0;
71
sal_Int32						OPropertyArrayUsageHelper< TYPE >::s_nRefCount	= 0;

Return to issue 16695