From 5440865e11cf4ec4e05ded49194c5780612736dd Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Mon, 2 Nov 2015 17:17:21 -0600 Subject: [PATCH] Add an include guard to tests/base/functions.h. Not important, but found while playing with collating testcases into one. --- tests/base/functions.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/base/functions.h b/tests/base/functions.h index db407ee75c..580d632d38 100644 --- a/tests/base/functions.h +++ b/tests/base/functions.h @@ -15,6 +15,8 @@ // Generic routines to check consistency of function classes +#ifndef __TESTS_FUNCTIONS_H +#define __TESTS_FUNCTIONS_H // Check, whether the various implementations of function values are // consistent. Arguments include the function, the amount of @@ -230,3 +232,4 @@ check_gradient( deallog << std::endl; } +#endif -- 2.39.5