aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/util/Private.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/crepe/util/Private.h')
-rw-r--r--src/crepe/util/Private.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/crepe/util/Private.h b/src/crepe/util/Private.h
index fc3728f..6dd28bb 100644
--- a/src/crepe/util/Private.h
+++ b/src/crepe/util/Private.h
@@ -9,16 +9,16 @@ class Private {
public:
Private() = default;
~Private();
+ Private(const Private &);
Private(Private &&);
+ Private & operator=(const Private &);
Private & operator=(Private &&);
- Private(const Private &) = delete;
- Private & operator=(const Private &) = delete;
template <typename T>
T & get();
template <typename T, typename... Args>
- void set(Args &&... args);
+ T & set(Args &&... args);
bool empty() const noexcept;