From: Martin Kronbichler Date: Thu, 19 Nov 2009 01:15:06 +0000 (+0000) Subject: Forgot to fix one more problem. X-Git-Tag: v8.0.0~6802 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d427029b9b36140738c7f73b18ea825677708003;p=dealii.git Forgot to fix one more problem. git-svn-id: https://svn.dealii.org/trunk@20133 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/codim_one/integrate_log.cc b/tests/codim_one/integrate_log.cc index e9a08a341a..d7a0818516 100644 --- a/tests/codim_one/integrate_log.cc +++ b/tests/codim_one/integrate_log.cc @@ -160,7 +160,7 @@ int main() *( pow(b-a,static_cast(k)+1) / (k+1) * log(b-a) - - pow(b-a,static_cast(k)+1) / pow(k+1, 2) + pow(b-a,static_cast(k)+1) / pow(static_cast(k+1), 2) ); deallog << "f(x) = x^" << j << std::endl; for (unsigned int i=1; i<13; ++i)