Little code style tweaks

Let the code be more conformant to current style.

No functional change.

Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
Marco Costalba
2009-04-15 12:44:55 +02:00
parent 8da2153ee8
commit ecec7dbf89
2 changed files with 71 additions and 109 deletions

View File

@@ -47,7 +47,6 @@ const std::string EngineVersion = "";
#define Min(x, y) (((x) < (y))? (x) : (y))
#define Max(x, y) (((x) < (y))? (y) : (x))
#define Abs(a) (((a) < 0) ? -(a) : (a))
////