summaryrefslogtreecommitdiff
path: root/bridges/source/cpp_uno/gcc3_macosx_x86-64/except.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-10-12 15:25:41 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-10-12 17:52:26 +0200
commitbff4c13475957863bfa7da5bc3bcf82a64a7503a (patch)
tree23530ecc27cb8d46b26d5d4aea6b058e5fbaf9db /bridges/source/cpp_uno/gcc3_macosx_x86-64/except.cxx
parent27491c28cb67ada0a4c5eaa90eaf589425990582 (diff)
Replace "SAL_DELETED_FUNCTION" with "= delete" in LIBO_INTERNAL_ONLY code
Change-Id: I328ac7a95ccc87732efae48b567a0556865928f3
Diffstat (limited to 'bridges/source/cpp_uno/gcc3_macosx_x86-64/except.cxx')
-rw-r--r--bridges/source/cpp_uno/gcc3_macosx_x86-64/except.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/bridges/source/cpp_uno/gcc3_macosx_x86-64/except.cxx b/bridges/source/cpp_uno/gcc3_macosx_x86-64/except.cxx
index ab601ddff75b..bf9a7bf94d73 100644
--- a/bridges/source/cpp_uno/gcc3_macosx_x86-64/except.cxx
+++ b/bridges/source/cpp_uno/gcc3_macosx_x86-64/except.cxx
@@ -47,16 +47,16 @@ namespace CPPU_CURRENT_NAMESPACE {
namespace {
struct Fake_type_info {
- virtual ~Fake_type_info() SAL_DELETED_FUNCTION;
+ virtual ~Fake_type_info() = delete;
char const * name;
};
struct Fake_class_type_info: Fake_type_info {
- virtual ~Fake_class_type_info() SAL_DELETED_FUNCTION;
+ virtual ~Fake_class_type_info() = delete;
};
struct Fake_si_class_type_info: Fake_class_type_info {
- virtual ~Fake_si_class_type_info() SAL_DELETED_FUNCTION;
+ virtual ~Fake_si_class_type_info() = delete;
void const * base;
};