diff options
author | Caolán McNamara <caolanm@redhat.com> | 2017-03-03 11:10:18 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2017-03-06 09:21:24 +0000 |
commit | 0ea05f930fb6811da33606cf546057e11a96361c (patch) | |
tree | 555eecafc2f850c663180f3d516bcc74abae24e9 /connectivity/source/inc | |
parent | fc5acf0f608ed279f719e38f9a6e80c326b93fa8 (diff) |
drop various _MSC_VER < 1900 conditionals
Change-Id: I68d93b260db1f542bb3b44858b61b2d30ae93530
Reviewed-on: https://gerrit.libreoffice.org/34856
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'connectivity/source/inc')
-rw-r--r-- | connectivity/source/inc/file/fcode.hxx | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/connectivity/source/inc/file/fcode.hxx b/connectivity/source/inc/file/fcode.hxx index d3a3b8ac72f7..fe66e3c32710 100644 --- a/connectivity/source/inc/file/fcode.hxx +++ b/connectivity/source/inc/file/fcode.hxx @@ -44,7 +44,6 @@ namespace connectivity public: //virtual dtor to allow this to be the root of the class hierarchy virtual ~OCode(); -#if !defined _MSC_VER || _MSC_VER >= 1900 //but that disables the default move ctor OCode(OCode&&) = default; //but that disables the rest of default ctors @@ -53,7 +52,6 @@ namespace connectivity //and same issue for the assignment operators OCode& operator=(const OCode&) = default; OCode& operator=(OCode&&) = default; -#endif static void * SAL_CALL operator new( size_t nSize ) { return ::rtl_allocateMemory( nSize ); } |