diff options
author | fluxgen <fluxgen> | 2003-12-16 17:06:52 (GMT) |
---|---|---|
committer | fluxgen <fluxgen> | 2003-12-16 17:06:52 (GMT) |
commit | 72b878f78c0df0a54cf8e9f04bb2e22dd6715658 (patch) | |
tree | 2bd5252fe426875a8bb7ba77b61eeff695ee3c62 /src/FbTk/NotCopyable.hh | |
parent | a1930dbf6ae447e92a8dc063ab5d36057ae1babc (diff) | |
download | fluxbox_pavel-72b878f78c0df0a54cf8e9f04bb2e22dd6715658.zip fluxbox_pavel-72b878f78c0df0a54cf8e9f04bb2e22dd6715658.tar.bz2 |
fixed some icc warnings
Diffstat (limited to 'src/FbTk/NotCopyable.hh')
-rw-r--r-- | src/FbTk/NotCopyable.hh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/FbTk/NotCopyable.hh b/src/FbTk/NotCopyable.hh index 8310762..50919e4 100644 --- a/src/FbTk/NotCopyable.hh +++ b/src/FbTk/NotCopyable.hh | |||
@@ -32,11 +32,12 @@ class NotCopyable | |||
32 | { | 32 | { |
33 | protected: | 33 | protected: |
34 | NotCopyable() {} | 34 | NotCopyable() {} |
35 | virtual ~NotCopyable() { } | ||
35 | private: | 36 | private: |
36 | NotCopyable(const NotCopyable &rhs); // copy constructor | 37 | NotCopyable(const NotCopyable &rhs); // copy constructor |
37 | NotCopyable &operator=(const NotCopyable &rhs); // assignment operator | 38 | NotCopyable &operator=(const NotCopyable &rhs); // assignment operator |
38 | }; | 39 | }; |
39 | 40 | ||
40 | }; // end namespace FbTk | 41 | } // end namespace FbTk |
41 | 42 | ||
42 | #endif //FBTK_NOTCOPYABLE_HH | 43 | #endif //FBTK_NOTCOPYABLE_HH |