summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-10-12 16:07:13 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-10-12 17:52:29 +0200
commitb9f34146be786f3f40625e285a87111a01b874d9 (patch)
tree550fc3322eab055bf9b3adf1d82a8866af745265 /include
parentReplace "SAL_OVERRIDE" with "override" in LIBO_INTERNAL_ONLY code (diff)
downloadcore-b9f34146be786f3f40625e285a87111a01b874d9.tar.gz
core-b9f34146be786f3f40625e285a87111a01b874d9.zip
HAVE_CXX11_FINAL is required on all supported toolchains
Change-Id: I85ed86fdd8b11863c96b7a6c3ba76d77dbecf192
Diffstat (limited to 'include')
-rw-r--r--include/sal/types.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/sal/types.h b/include/sal/types.h
index 498a154f1f9f..3f999fc15e4e 100644
--- a/include/sal/types.h
+++ b/include/sal/types.h
@@ -419,11 +419,11 @@ namespace css = ::com::sun::star;
/** C++11 "final" feature.
- With HAVE_CXX11_FINAL, mark a class as non-derivable or a method as non-overridable.
+ For LIBO_INTERNAL_ONLY, mark a class as non-derivable or a method as non-overridable.
@since LibreOffice 4.1
*/
-#if HAVE_CXX11_FINAL
+#if defined LIBO_INTERNAL_ONLY
#define SAL_FINAL final
#else
#define SAL_FINAL