From 1fa7d19af08892800dfdb0b700bc0a9362a3fae8 Mon Sep 17 00:00:00 2001 From: Richard Kreckel Date: Thu, 15 Oct 2015 08:59:20 +0200 Subject: [PATCH] Fix make check with g++ -std=c++11. Our template function log() returning an object of type GiNaC::function turns out to compete with a template from a libstdc++ header. We have to help the compiler a bit. --- check/exam_inifcns.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/check/exam_inifcns.cpp b/check/exam_inifcns.cpp index 03c25807..cad9c835 100644 --- a/check/exam_inifcns.cpp +++ b/check/exam_inifcns.cpp @@ -293,6 +293,7 @@ static unsigned inifcns_consist_exp() static unsigned inifcns_consist_log() { + using GiNaC::log; unsigned result = 0; symbol z("a"), w("b"); realsymbol a("a"), b("b"); -- 2.49.0