From c749af94ff9a33fb85e60079be85414bd2fca501 Mon Sep 17 00:00:00 2001 From: Thomas Grill Date: Fri, 17 Dec 2004 05:02:40 +0000 Subject: avoid malicious file name characters using flext build system remove legacy files svn path=/trunk/; revision=2395 --- externals/grill/vasp/source/util.h | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'externals/grill/vasp/source') diff --git a/externals/grill/vasp/source/util.h b/externals/grill/vasp/source/util.h index 859f37e7..7f7cd080 100644 --- a/externals/grill/vasp/source/util.h +++ b/externals/grill/vasp/source/util.h @@ -19,6 +19,13 @@ WARRANTIES, see the file, "license.txt," in this distribution. #define BIG 1.e10 +#ifdef min +#undef min +#endif + +#ifdef max +#undef max +#endif template inline V swap(T &a,T &b) { T c = a; a = b; b = c; } -- cgit v1.2.1