summaryrefslogtreecommitdiffstats
path: root/src/document.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/document.h')
-rw-r--r--src/document.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/document.h b/src/document.h
index 65f0cf628..1f3de042b 100644
--- a/src/document.h
+++ b/src/document.h
@@ -226,8 +226,8 @@ public:
void setModifiedSinceSave(bool const modified = true);
private:
- SPDocument(SPDocument const &); // no copy
- void operator=(SPDocument const &); // no assign
+ SPDocument(SPDocument const &) = delete; // no copy
+ void operator=(SPDocument const &) = delete; // no assign
Persp3D *current_persp3d; /**< Currently 'active' perspective (to which, e.g., newly created boxes are attached) */
Persp3DImpl *current_persp3d_impl;