summaryrefslogtreecommitdiff
path: root/include/com
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2016-05-13 21:12:44 +0200
committerMichael Stahl <mstahl@redhat.com>2016-05-13 21:51:08 +0000
commitefc05c0a1ecac549c8340a8f9ec4e47556569adc (patch)
tree3e1191299b418b5cdf9761db950ee4e5a30e6966 /include/com
parent577b4e499b870a8afd56f2d9ac1fe0313162bf8d (diff)
remove various crutches for boost::bind/boost::mem_fn
These aren't used any more, and the C++11 std equivalents don't use get_pointer() overloads. Change-Id: Ib97a6a595863e21a1621c63709ea2b28f6550fde Reviewed-on: https://gerrit.libreoffice.org/24982 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'include/com')
-rw-r--r--include/com/sun/star/uno/Reference.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/include/com/sun/star/uno/Reference.h b/include/com/sun/star/uno/Reference.h
index 368c9982a2fd..5f4fea0d87fa 100644
--- a/include/com/sun/star/uno/Reference.h
+++ b/include/com/sun/star/uno/Reference.h
@@ -571,16 +571,6 @@ public:
inline static SAL_WARN_UNUSED_RESULT Reference< interface_type > SAL_CALL query( XInterface * pInterface );
};
-/// @cond INTERNAL
-/** Enables boost::mem_fn and boost::bind to recognize Reference.
-*/
-template <typename T>
-inline T * get_pointer( Reference<T> const& r )
-{
- return r.get();
-}
-/// @endcond
-
}
}
}