]> git.ipfire.org Git - thirdparty/squid.git/blobdiff - src/esi/Expression.cc
SourceFormat Enforcement
[thirdparty/squid.git] / src / esi / Expression.cc
index 98dfacb950c70bb3b670742c9388ce4ca1f7ba95..60162975a6b8555c0ed0ea00373559af0d90f5ff 100644 (file)
  *
  */
 
-#include "squid-old.h"
+#include "squid.h"
+#include "Debug.h"
 #include "esi/Expression.h"
+#include "profiler/Profiler.h"
+
+#if HAVE_MATH_H
+#include <math.h>
+#endif
+#if HAVE_ERRNO_H
+#include <errno.h>
+#endif
 
 /* stack precedence rules:
  * before pushing an operator onto the stack, the
@@ -265,7 +274,6 @@ evalexpr(stackmember * stack, int *depth, int whereAmI, stackmember * candidate)
     return 1;
 }
 
-
 int
 evalor(stackmember * stack, int *depth, int whereAmI, stackmember * candidate)
 {
@@ -414,7 +422,6 @@ evallesseq(stackmember * stack, int *depth, int whereAmI, stackmember * candidat
     /*  debugs(86, DBG_IMPORTANT, "?= " << srv.value.integral << " "); */
     return 0;
 
-
 }
 
 int
@@ -463,7 +470,6 @@ evallessthan(stackmember * stack, int *depth, int whereAmI, stackmember * candid
     /* debugs(86, DBG_IMPORTANT, "?= " << srv.value.integral << " "); */
     return 0;
 
-
 }
 
 int
@@ -512,7 +518,6 @@ evalmoreeq(stackmember * stack, int *depth, int whereAmI, stackmember * candidat
     /* debugs(86, DBG_IMPORTANT, "?= " << srv.value.integral << " "); */
     return 0;
 
-
 }
 
 int