From 9fce86ffafa66da24baf16eb0cfb7d51e6c57dc1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20L=C3=BChne?= Date: Sun, 22 May 2016 14:45:31 +0200 Subject: [PATCH] Made Operator constructor private. --- include/plasp/sas/Operator.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/plasp/sas/Operator.h b/include/plasp/sas/Operator.h index 7fa4d2a..08eb41b 100644 --- a/include/plasp/sas/Operator.h +++ b/include/plasp/sas/Operator.h @@ -40,6 +40,8 @@ class Operator size_t costs() const; private: + Operator() = default; + Predicate m_predicate; Conditions m_preconditions; Effects m_effects;