[Libreoffice-commits] core.git: cppu/source
Noel Grandin
noel at peralex.com
Tue Sep 16 23:33:20 PDT 2014
cppu/source/uno/lbenv.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit e71bc82224418f6dbd266697cf255013a22adbb4
Author: Noel Grandin <noel at peralex.com>
Date: Wed Sep 17 08:20:09 2014 +0200
attempt to fix Android buildbot
it seems to have issues with a < token followed by a :: token.
Change-Id: I8cc6a5b6cf00a233182de273ab6aa8609326aca9
diff --git a/cppu/source/uno/lbenv.cxx b/cppu/source/uno/lbenv.cxx
index 5adecc3..96069a0 100644
--- a/cppu/source/uno/lbenv.cxx
+++ b/cppu/source/uno/lbenv.cxx
@@ -98,7 +98,7 @@ struct FctPtrHash :
public ::std::unary_function< const void *, ::std::size_t >
{
::std::size_t operator () ( const void * pKey ) const
- { return reinterpret_cast<::std::size_t>( pKey ); }
+ { return reinterpret_cast< ::std::size_t>( pKey ); }
};
More information about the Libreoffice-commits
mailing list