1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-04-09 21:50:45 +01:00

Added missing include guards in bigfloat_double.h

This commit is contained in:
Christopher Kelly 2020-04-20 10:30:38 -04:00
parent 181709bba4
commit 0896f2cead

View File

@ -25,6 +25,10 @@ Author: Peter Boyle <paboyle@ph.ed.ac.uk>
See the full license in the file "LICENSE" in the top level distribution directory See the full license in the file "LICENSE" in the top level distribution directory
*************************************************************************************/ *************************************************************************************/
/* END LEGAL */ /* END LEGAL */
#ifndef INCLUDED_BIGFLOAT_DOUBLE_H
#define INCLUDED_BIGFLOAT_DOUBLE_H
#include <math.h> #include <math.h>
typedef double mfloat; typedef double mfloat;
@ -186,4 +190,6 @@ public:
// friend bigfloat& random(void); // friend bigfloat& random(void);
}; };
#endif