From f19d3bba34278672f07572ee81886b00cd98fd9f Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Mon, 30 Apr 2012 11:51:32 +0200 Subject: GCC 4.7 portability fixes --- cutl/compiler/traversal.hxx | 4 ++-- 1 file 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 -- cgit v1.1