summaryrefslogtreecommitdiff
path: root/src/ctx.hpp
diff options
context:
space:
mode:
authorMichael Fox <415fox@gmail.com>2012-02-16 10:02:40 +0900
committerMartin Sustrik <sustrik@250bpm.com>2012-02-16 10:02:40 +0900
commitb2d711c9e4f3d8939d72732df11c19fa2fe79b74 (patch)
tree9d0d8e2d3f2634c5832de833189bb13b0b349326 /src/ctx.hpp
parent0f49d62fb09878349ff1bc4440f2cdfcf71a9e42 (diff)
Fix bad combination of gcc3, -Werror and private destructor
Diffstat (limited to 'src/ctx.hpp')
-rw-r--r--src/ctx.hpp4
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;