aboutsummaryrefslogtreecommitdiff
path: root/src/FbTk/NotCopyable.hh
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2003-12-16 17:06:52 (GMT)
committerfluxgen <fluxgen>2003-12-16 17:06:52 (GMT)
commit72b878f78c0df0a54cf8e9f04bb2e22dd6715658 (patch)
tree2bd5252fe426875a8bb7ba77b61eeff695ee3c62 /src/FbTk/NotCopyable.hh
parenta1930dbf6ae447e92a8dc063ab5d36057ae1babc (diff)
downloadfluxbox-72b878f78c0df0a54cf8e9f04bb2e22dd6715658.zip
fluxbox-72b878f78c0df0a54cf8e9f04bb2e22dd6715658.tar.bz2
fixed some icc warnings
Diffstat (limited to 'src/FbTk/NotCopyable.hh')
-rw-r--r--src/FbTk/NotCopyable.hh3
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{
33protected: 33protected:
34 NotCopyable() {} 34 NotCopyable() {}
35 virtual ~NotCopyable() { }
35private: 36private:
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