From fbaee783799733b8451fd123dc297ed29d33e1c9 Mon Sep 17 00:00:00 2001 From: Eric Wasylishen Date: Sat, 22 Apr 2017 15:55:31 -0600 Subject: [PATCH] common: qvec: hack to allow including in qbsp --- include/common/qvec.hh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/common/qvec.hh b/include/common/qvec.hh index 8eaf4517..b467d13c 100644 --- a/include/common/qvec.hh +++ b/include/common/qvec.hh @@ -20,8 +20,10 @@ #ifndef __COMMON_QVEC_HH__ #define __COMMON_QVEC_HH__ +#ifndef qmax // FIXME: Remove this ifdef #define qmax(a,b) (((a)>(b)) ? (a) : (b)) #define qmin(a,b) (((a)>(b)) ? (b) : (a)) +#endif template class qvec {