summaryrefslogtreecommitdiffstats
path: root/src/message-stack.h
diff options
context:
space:
mode:
authorMarc Jeanmougin <marc@jeanmougin.fr>2018-06-14 18:24:48 +0000
committerMarc Jeanmougin <marc@jeanmougin.fr>2018-06-14 18:24:48 +0000
commit5f4e9e22f0d31216b16b31c860ca6b5a66ab91cb (patch)
treeab03ddc2f4ac91690f2003d7b7075d7d9e230e1d /src/message-stack.h
parentMerge branch 'transl_fr' of gitlab.com:gadic/inkscape (diff)
parentRun clang-tidy’s modernize-use-equals-delete pass. (diff)
downloadinkscape-5f4e9e22f0d31216b16b31c860ca6b5a66ab91cb.tar.gz
inkscape-5f4e9e22f0d31216b16b31c860ca6b5a66ab91cb.zip
Merge branch 'clang-tidy-delete-pass' of gitlab.com:linkmauve/inkscape
Diffstat (limited to 'src/message-stack.h')
-rw-r--r--src/message-stack.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/message-stack.h b/src/message-stack.h
index ed0315cf5..a8cbf08df 100644
--- a/src/message-stack.h
+++ b/src/message-stack.h
@@ -164,8 +164,8 @@ private:
guint timeout_id;
};
- MessageStack(MessageStack const &); // no copy
- void operator=(MessageStack const &); // no assign
+ MessageStack(MessageStack const &) = delete; // no copy
+ void operator=(MessageStack const &) = delete; // no assign
/// pushes a message onto the stack with an optional timeout
MessageId _push(MessageType type, unsigned int lifetime, char const *message);