Author: arielch
Date: Tue Oct 25 13:39:30 2016
New Revision: 1766530
URL: http://svn.apache.org/viewvc?rev=1766530&view=rev
Log:
i123947 - fix stlport emulation wrappers when compiling in C++11 mode
Modified:
openoffice/trunk/main/stlport/systemstl/functional
Modified: openoffice/trunk/main/stlport/systemstl/functional
URL:
http://svn.apache.org/viewvc/openoffice/trunk/main/stlport/systemstl/functional?rev=1766530&r1=1766529&r2=1766530&view=diff
==============================================================================
--- openoffice/trunk/main/stlport/systemstl/functional (original)
+++ openoffice/trunk/main/stlport/systemstl/functional Tue Oct 25 13:39:30 2016
@@ -32,6 +32,8 @@
// note: VS2008SP1 has known problems after a security update
(KB971092,KB974479,KB974223)
namespace std{ template<class _T> void _Swap_adl(_T& l, _T& r)
{swap(l,r);} }
#endif
+#elif defined(__cplusplus) && (__cplusplus >= 201103L)
+ #include_next <functional>
#else // fall back to boost/tr1
#include <boost/tr1/tr1/functional>
#include <boost/functional/hash.hpp>