- Timestamp:
- 03/26/16 01:33:13 (9 years ago)
- Location:
- cpp/frams
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/genetics/genoconv.cpp
r286 r483 47 47 tab[0].id = "Genetics: Conversions"; 48 48 tab[0].group = 1; 49 tab[0].flags = ( short)ile;49 tab[0].flags = (paInt)ile; 50 50 tab[0].name = "gkparam:"; 51 51 gcnames.clear(); -
cpp/frams/param/param.cpp
r478 r483 713 713 //////////////////////////////// PARAM //////////////////////////////////// 714 714 715 #ifdef DEBUG715 #ifdef _DEBUG 716 716 void SimpleAbstractParam::sanityCheck(int i) 717 717 { … … 748 748 ///////// get 749 749 750 #ifdef DEBUG750 #ifdef _DEBUG 751 751 #define SANITY_CHECK(i) sanityCheck(i) 752 752 #else -
cpp/frams/param/param.h
r478 r483 172 172 static const int LOAD2_IGNORE_PARSE_FAILED=(~LOAD2_PARSE_FAILED); ///< bitmask to be used if the parsing error is to be ignored. usage: int number_of_loaded_fields=load2(...) & LOAD2_IGNORE_PARSE_FAILED; 173 173 174 #ifdef DEBUG174 #ifdef _DEBUG 175 175 virtual void sanityCheck(int i) {} 176 176 #endif … … 188 188 #define FIELDOFFSET(_fld_) ((intptr_t)((char*)(&((FIELDSTRUCT*)&MakeCodeGuardHappy)->_fld_)-((char*)((FIELDSTRUCT*)&MakeCodeGuardHappy)))) 189 189 190 #ifdef DEBUG190 #ifdef _DEBUG 191 191 #define PARAM_ILLEGAL_OFFSET ((intptr_t)0xdeadbeef) 192 192 #else … … 296 296 virtual void setDefault(int i); 297 297 298 #ifdef DEBUG298 #ifdef _DEBUG 299 299 void sanityCheck(int i); 300 300 #endif
Note: See TracChangeset
for help on using the changeset viewer.