X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fkaps%2Fpbqp_t.h;h=42407bbb7b3e690e66dbaa3b1d7c1700d0b87d02;hb=0a8dac2b5fb9e59ea2add322baf61237b607bea5;hp=11cb51c7f3d2d855dc0b7e15725020470bc45fde;hpb=b53410a0e9548f99c2b37699f01766f50f1055ff;p=libfirm diff --git a/ir/kaps/pbqp_t.h b/ir/kaps/pbqp_t.h index 11cb51c7f..42407bbb7 100644 --- a/ir/kaps/pbqp_t.h +++ b/ir/kaps/pbqp_t.h @@ -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 @@ -41,10 +40,10 @@ #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"