summaryrefslogtreecommitdiff
path: root/connectivity/source/inc/file
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2017-03-03 11:10:18 +0000
committerCaolán McNamara <caolanm@redhat.com>2017-03-06 09:21:24 +0000
commit0ea05f930fb6811da33606cf546057e11a96361c (patch)
tree555eecafc2f850c663180f3d516bcc74abae24e9 /connectivity/source/inc/file
parentfc5acf0f608ed279f719e38f9a6e80c326b93fa8 (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/file')
-rw-r--r--connectivity/source/inc/file/fcode.hxx2
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 ); }