From 9cfbc7bbe645c187aff618f7d5faf34fec7e32e1 Mon Sep 17 00:00:00 2001 From: Ichthyostega Date: Fri, 10 May 2013 00:48:25 +0200 Subject: [PATCH] GCC 4.7 compilation fix now builds for me on Debian-7 Wheezy 64bit unqualified member functions in dependent base classes not found anymore. Need to qualify either the class or the instance. --- src/lib/time/control-policy.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/time/control-policy.hpp b/src/lib/time/control-policy.hpp index d05bbbe62..9fa0900c5 100644 --- a/src/lib/time/control-policy.hpp +++ b/src/lib/time/control-policy.hpp @@ -270,7 +270,7 @@ namespace mutation { static TI dontChange (TAR& target) ///< @note: not touching the target { - return buildChangedValue(target); + return Link::buildChangedValue(target); } };