ソースを参照

Fixed again min/max macros.

Florian DORMONT 10 年 前
コミット
4d53a6779a
共有1 個のファイルを変更した2 個の追加2 個の削除を含む
  1. 2 2
      include/misc.h

+ 2 - 2
include/misc.h

@@ -1,8 +1,8 @@
 #ifndef INCLUDE_MISC_H
 #define INCLUDE_MISC_H
 
-#define min(a, b) ((a < b) ? a : b)
-#define max(a, b) ((a > b) ? a : b)
+#define min(a, b) (((a) < b) ? (a) : (b))
+#define max(a, b) (((a) > (b)) ? (a) : (b))
 
 #endif