diff options
author | Michael Fox <415fox@gmail.com> | 2012-02-16 10:02:40 +0900 |
---|---|---|
committer | Martin Sustrik <sustrik@250bpm.com> | 2012-02-16 10:02:40 +0900 |
commit | b2d711c9e4f3d8939d72732df11c19fa2fe79b74 (patch) | |
tree | 9d0d8e2d3f2634c5832de833189bb13b0b349326 /src | |
parent | 0f49d62fb09878349ff1bc4440f2cdfcf71a9e42 (diff) |
Fix bad combination of gcc3, -Werror and private destructor
Diffstat (limited to 'src')
-rw-r--r-- | src/ctx.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ctx.hpp b/src/ctx.hpp index a813e60..8c3941f 100644 --- a/src/ctx.hpp +++ b/src/ctx.hpp @@ -102,10 +102,10 @@ namespace xs reaper_tid = 1 }; - private: - ~ctx_t (); + private: + // Used to check whether the object is a context. uint32_t tag; |