summaryrefslogtreecommitdiff
path: root/cppu
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-09-17 08:20:09 +0200
committerNoel Grandin <noel@peralex.com>2014-09-17 08:22:58 +0200
commite71bc82224418f6dbd266697cf255013a22adbb4 (patch)
treeb6d3246146315ebd5bdd8f22019c7f8485a44cb6 /cppu
parent804e0335fbcc9758ef36a207c5e95664972d31f9 (diff)
attempt to fix Android buildbot
it seems to have issues with a < token followed by a :: token. Change-Id: I8cc6a5b6cf00a233182de273ab6aa8609326aca9
Diffstat (limited to 'cppu')
-rw-r--r--cppu/source/uno/lbenv.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/cppu/source/uno/lbenv.cxx b/cppu/source/uno/lbenv.cxx
index 5adecc3ce2c0..96069a09561c 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 ); }
};