From 83e9eeb9c6f1d9e278af55a8b8ef610f1896ffb2 Mon Sep 17 00:00:00 2001 From: Bradley J Chambers Date: Fri, 16 May 2014 09:27:58 -0400 Subject: [PATCH] revert the explicitly deleted behavior of these functions, unavailable on MSVC2012 --- include/pdal/filters/Scaling.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/pdal/filters/Scaling.hpp b/include/pdal/filters/Scaling.hpp index b2353c2085..e06b085da7 100644 --- a/include/pdal/filters/Scaling.hpp +++ b/include/pdal/filters/Scaling.hpp @@ -80,8 +80,8 @@ class PDAL_DLL Scaling: public Filter Scaling(Stage& prevStage, const Options&); - Scaling& operator=(const Scaling&) = delete; - Scaling(const Scaling&) = delete; + Scaling& operator=(const Scaling&); + Scaling(const Scaling&); static Options getDefaultOptions(); virtual void initialize();