From 0ea05f930fb6811da33606cf546057e11a96361c Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Fri, 3 Mar 2017 11:10:18 +0000 Subject: drop various _MSC_VER < 1900 conditionals MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I68d93b260db1f542bb3b44858b61b2d30ae93530 Reviewed-on: https://gerrit.libreoffice.org/34856 Tested-by: Jenkins Reviewed-by: Caolán McNamara Tested-by: Caolán McNamara --- connectivity/source/inc/file/fcode.hxx | 2 -- 1 file changed, 2 deletions(-) (limited to 'connectivity/source/inc') 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 ); } -- cgit