aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/Platform.h
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2011-02-20 08:43:25 +1100
committernyamatongwe <devnull@localhost>2011-02-20 08:43:25 +1100
commitc599749164ede08d1e68dbb857135eb75abb1f25 (patch)
tree20038032b7afcf721b95efc8d01619b12206acd8 /include/Platform.h
parent63d64405ee7c55959b393cfc5afa5eb13f65d95a (diff)
downloadscintilla-mirror-c599749164ede08d1e68dbb857135eb75abb1f25.tar.gz
Avoid some cppcheck warnings.
Diffstat (limited to 'include/Platform.h')
-rw-r--r--include/Platform.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/Platform.h b/include/Platform.h
index ea9f97298..b70ffc3ce 100644
--- a/include/Platform.h
+++ b/include/Platform.h
@@ -255,8 +255,8 @@ class Palette {
int allocatedLen;
#endif
// Private so Palette objects can not be copied
- Palette(const Palette &) {}
- Palette &operator=(const Palette &) { return *this; }
+ Palette(const Palette &);
+ Palette &operator=(const Palette &);
public:
#if PLAT_WIN
void *hpal;
@@ -288,8 +288,8 @@ protected:
int ascent;
#endif
// Private so Font objects can not be copied
- Font(const Font &) {}
- Font &operator=(const Font &) { fid=0; return *this; }
+ Font(const Font &);
+ Font &operator=(const Font &);
public:
Font();
virtual ~Font();