From b882f3f3c658f0fdaed0d1c934ffd8cb8d543559 Mon Sep 17 00:00:00 2001 From: mkhan Date: Wed, 10 Jan 2018 15:19:35 +1100 Subject: [PATCH] update --- license++/license-exception.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/license++/license-exception.h b/license++/license-exception.h index cd81aa0..4b52296 100644 --- a/license++/license-exception.h +++ b/license++/license-exception.h @@ -25,9 +25,6 @@ class LicenseException : public LicenseExceptionBase, public std::runtime_error LicenseException(const std::string& msg) : std::runtime_error(msg) {} virtual ~LicenseException() = default; -private: - LicenseException(const LicenseException&) = delete; - LicenseException& operator=(const LicenseException&) = delete; }; }