diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-10-12 15:33:22 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-10-12 17:52:26 +0200 |
commit | b08247a12b43fcd9f86ecd912fce7d69a3e66061 (patch) | |
tree | 76633e11779ed2658d18fe97406b1a657b7e7bc5 /include | |
parent | bff4c13475957863bfa7da5bc3bcf82a64a7503a (diff) |
HAVE_CXX11_OVERRIDE is required on all supported toolchains
Change-Id: Ibc5462642d0a3cd0f96668472ddc0ac0ae407132
Diffstat (limited to 'include')
-rw-r--r-- | include/sal/types.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/sal/types.h b/include/sal/types.h index da6849ead524..498a154f1f9f 100644 --- a/include/sal/types.h +++ b/include/sal/types.h @@ -406,12 +406,12 @@ namespace css = ::com::sun::star; /** C++11 "override" feature. - With HAVE_CXX11_OVERRIDE, force the method to override a existing method in + For LIBO_INTERNAL_ONLY, force the method to override a existing method in parent, error out if the method with the correct signature does not exist. @since LibreOffice 4.1 */ -#if HAVE_CXX11_OVERRIDE +#if defined LIBO_INTERNAL_ONLY #define SAL_OVERRIDE override #else #define SAL_OVERRIDE |