be: Simplify places, which still assumed, that Projs are scheduled.
[libfirm] / ir / kaps / pbqp_t.h
index 11cb51c..42407bb 100644 (file)
@@ -22,7 +22,6 @@
  * @brief   PBQP data types.
  * @date    02.10.2008
  * @author  Sebastian Buchwald
- * @version $Id$
  */
 #ifndef KAPS_PBQP_T_H
 #define KAPS_PBQP_T_H
 
 #if KAPS_USE_UNSIGNED
        typedef unsigned num;
-       static const num INF_COSTS = UINT_MAX;
+       #define INF_COSTS UINT_MAX
 #else
        typedef intmax_t num;
-       static const num INF_COSTS = INTMAX_MAX;
+       #define INF_COSTS INTMAX_MAX
 #endif
 
 #include "matrix_t.h"