aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2012-04-30 11:51:32 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2012-04-30 11:51:32 +0200
commitf19d3bba34278672f07572ee81886b00cd98fd9f (patch)
tree10df30bb698cd3aa59d258030624bf4c1e5cbb22
parentbf3ed069bbbbbc3b7cec86dffbfa86803dd021f3 (diff)
GCC 4.7 portability fixes
-rw-r--r--cutl/compiler/traversal.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/cutl/compiler/traversal.hxx b/cutl/compiler/traversal.hxx
index 737a8ba..7eeeffe 100644
--- a/cutl/compiler/traversal.hxx
+++ b/cutl/compiler/traversal.hxx
@@ -84,12 +84,12 @@ namespace cutl
traverser_impl ()
{
- add (typeid (type), *this);
+ this->add (typeid (type), *this);
}
traverser_impl (traverser_impl const&)
{
- add (typeid (type), *this);
+ this->add (typeid (type), *this);
}
virtual void