From: hartmann Date: Fri, 13 Feb 2004 14:56:04 +0000 (+0000) Subject: Add some missing std:: X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f839a624c254c536e8f5ccc43d837e0cbb1902ea;p=dealii-svn.git Add some missing std:: git-svn-id: https://svn.dealii.org/trunk@8465 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/fe/fe_tools_test.cc b/tests/fe/fe_tools_test.cc index 61550ad44f..2f89a4ef15 100644 --- a/tests/fe/fe_tools_test.cc +++ b/tests/fe/fe_tools_test.cc @@ -36,7 +36,7 @@ #include #include -const double pi=acos(-1); +const double pi=std::acos(-1.); class TestFunction: public Function<2> { @@ -54,7 +54,7 @@ TestFunction::value(const Point<2> &p, const unsigned int component) const { Assert(component==0, ExcInternalError()); - return sin(pi*p(0))*cos(pi*p(1)); + return std::sin(pi*p(0))*std::cos(pi*p(1)); }