From: Wolfgang Bangerth Date: Thu, 9 Nov 2017 14:52:03 +0000 (-0700) Subject: Minor adjustments to one test. X-Git-Tag: v9.0.0-rc1~795^2~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dd4b2a8f108aadb82f4a73b6bee8be2a0f10e4aa;p=dealii.git Minor adjustments to one test. --- diff --git a/tests/vector_tools/integrate_difference_01.cc b/tests/vector_tools/integrate_difference_01.cc index 3814f96155..409028cd05 100644 --- a/tests/vector_tools/integrate_difference_01.cc +++ b/tests/vector_tools/integrate_difference_01.cc @@ -28,6 +28,8 @@ #include #include #include +#include + using namespace dealii; @@ -50,6 +52,8 @@ public: return p[0]*p[0]+p[1]*p[1]; if (c==2) return p[2]+p[0]*p[1]; + else + return numbers::signaling_nan(); } }; @@ -108,5 +112,4 @@ int main (int argc, char **argv) { initlog(); test<2>(); - }