Changeset 3499
- Timestamp:
- 04/09/10 11:23:55 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/c/include/macros.h
r3359 r3499 11 11 /*Error exception macro*/ 12 12 #ifdef _INTEL_WIN_ 13 #define ISSMERROR( error_string)\14 throw ErrorException(e rror_string)13 #define ISSMERROR(...)\ 14 throw ErrorException(exprintf(__VA_ARGS__)) 15 15 #else 16 #define ISSMERROR( error_string)\17 throw ErrorException(__FILE__,__func__,__LINE__,e rror_string)16 #define ISSMERROR(...)\ 17 throw ErrorException(__FILE__,__func__,__LINE__,exprintf(__VA_ARGS__)) 18 18 #endif 19 19
Note:
See TracChangeset
for help on using the changeset viewer.