From be65166a4761b53ec0127a8d4c2e20ec4ea22dae Mon Sep 17 00:00:00 2001 From: Vladimir Date: Wed, 7 Aug 2019 12:19:48 +0200 Subject: [PATCH] code checks --- SimG4Core/Application/interface/ExceptionHandler.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SimG4Core/Application/interface/ExceptionHandler.h b/SimG4Core/Application/interface/ExceptionHandler.h index e55ef64674642..7b4aeb431278d 100644 --- a/SimG4Core/Application/interface/ExceptionHandler.h +++ b/SimG4Core/Application/interface/ExceptionHandler.h @@ -30,8 +30,8 @@ class ExceptionHandler : public G4VExceptionHandler { const char *description) override; private: - ExceptionHandler(const ExceptionHandler &) = delete; - ExceptionHandler &operator=(const ExceptionHandler &right) = delete; + ExceptionHandler(const ExceptionHandler &); + ExceptionHandler &operator=(const ExceptionHandler &right); }; #endif