From 0896f2ceadd9e6c659ef35b467b67ef8d6d8597e Mon Sep 17 00:00:00 2001 From: Christopher Kelly Date: Mon, 20 Apr 2020 10:30:38 -0400 Subject: [PATCH] Added missing include guards in bigfloat_double.h --- Grid/algorithms/approx/bigfloat_double.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Grid/algorithms/approx/bigfloat_double.h b/Grid/algorithms/approx/bigfloat_double.h index 4a7a02b8..26dd6b02 100644 --- a/Grid/algorithms/approx/bigfloat_double.h +++ b/Grid/algorithms/approx/bigfloat_double.h @@ -25,6 +25,10 @@ Author: Peter Boyle See the full license in the file "LICENSE" in the top level distribution directory *************************************************************************************/ /* END LEGAL */ + +#ifndef INCLUDED_BIGFLOAT_DOUBLE_H +#define INCLUDED_BIGFLOAT_DOUBLE_H + #include typedef double mfloat; @@ -186,4 +190,6 @@ public: // friend bigfloat& random(void); }; +#endif +