diff options
author | Tor Lillqvist <tml@collabora.com> | 2017-02-15 23:55:18 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2017-02-15 23:01:23 +0000 |
commit | 6de3688cc6bd52ce08ff8a4327e59dbbc8a5c7d4 (patch) | |
tree | 3f669db44367a2a072b899a1a1b87eb25ee607af /cli_ure/source | |
parent | 3e1e49561bb734475d2b7d1db1beef0d3e9b53cd (diff) |
Drop :: prefix from std in c*/
Change-Id: If078cda95fa6ccd37270a5e9d81cfa0b84e71155
Reviewed-on: https://gerrit.libreoffice.org/34324
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Tor Lillqvist <tml@collabora.com>
Diffstat (limited to 'cli_ure/source')
-rw-r--r-- | cli_ure/source/uno_bridge/cli_base.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cli_ure/source/uno_bridge/cli_base.h b/cli_ure/source/uno_bridge/cli_base.h index ea07ff0767da..13f1dc7bff36 100644 --- a/cli_ure/source/uno_bridge/cli_base.h +++ b/cli_ure/source/uno_bridge/cli_base.h @@ -124,15 +124,15 @@ struct rtl_mem inline static void operator delete ( void *, void * ) {} - static inline ::std::unique_ptr< rtl_mem > allocate( ::std::size_t bytes ); + static inline std::unique_ptr< rtl_mem > allocate( std::size_t bytes ); }; -inline ::std::unique_ptr< rtl_mem > rtl_mem::allocate( ::std::size_t bytes ) +inline std::unique_ptr< rtl_mem > rtl_mem::allocate( std::size_t bytes ) { void * p = rtl_allocateMemory( bytes ); if (0 == p) throw BridgeRuntimeError("out of memory!" ); - return ::std::unique_ptr< rtl_mem >( (rtl_mem *)p ); + return std::unique_ptr< rtl_mem >( (rtl_mem *)p ); } |