summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2018-09-20 11:18:34 +0200
committerStephan Bergmann <sbergman@redhat.com>2018-09-20 15:53:56 +0200
commit852a6a57f99f8ceacee791329f2e6ca04a28dc58 (patch)
tree6d8b5aaca1c192a1791f752047a4de3536f74440
parent92d4e9304cbe07115bfc6c6c0146943b7bcb7cf6 (diff)
[API CHANGE] Remove unused SAL_FINAL
...which was never meant to be used by !LIBO_INTERNAL_ONLY code, anyway Change-Id: I90225efa91c9fa047a23e2a9b73cea0b87c20594 Reviewed-on: https://gerrit.libreoffice.org/60803 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
-rw-r--r--include/sal/types.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/include/sal/types.h b/include/sal/types.h
index 08751c33cd53..6bf4de970f71 100644
--- a/include/sal/types.h
+++ b/include/sal/types.h
@@ -409,18 +409,6 @@ namespace css = ::com::sun::star;
#define SAL_OVERRIDE
#endif
-/** C++11 "final" feature.
-
- For LIBO_INTERNAL_ONLY, mark a class as non-derivable or a method as non-overridable.
-
- @since LibreOffice 4.1
-*/
-#if defined LIBO_INTERNAL_ONLY
-#define SAL_FINAL final
-#else
-#define SAL_FINAL
-#endif
-
#if defined LIBO_INTERNAL_ONLY
#if HAVE_CPP_ATTRIBUTE_FALLTHROUGH
#define SAL_FALLTHROUGH [[fallthrough]]