aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Editor.h
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2015-05-16 14:51:29 +1000
committerNeil <nyamatongwe@gmail.com>2015-05-16 14:51:29 +1000
commit8e17031cd967768d60b23e862cd66028202485ae (patch)
tree04b37f4659874db905f7d6780ca0a1952e6d9ad6 /src/Editor.h
parentd5703a86717780d6c0a038ed66bbf5f80d6e673b (diff)
downloadscintilla-mirror-8e17031cd967768d60b23e862cd66028202485ae.tar.gz
Make unused single argument constructors explicit.
Diffstat (limited to 'src/Editor.h')
-rw-r--r--src/Editor.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Editor.h b/src/Editor.h
index 1fc907ac7..2bf8336fa 100644
--- a/src/Editor.h
+++ b/src/Editor.h
@@ -153,7 +153,7 @@ struct WrapPending {
*/
class Editor : public EditModel, public DocWatcher {
// Private so Editor objects can not be copied
- Editor(const Editor &);
+ explicit Editor(const Editor &);
Editor &operator=(const Editor &);
protected: // ScintillaBase subclass needs access to much of Editor