Changeset 3690 for source/ariba/utility/internal/Utilities.hpp
- Timestamp:
- May 26, 2009, 1:40:23 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
source/ariba/utility/internal/Utilities.hpp
r3689 r3690 1 // [Licen ce]1 // [License] 2 2 // The Ariba-Underlay Copyright 3 3 // … … 35 35 // official policies, either expressed or implied, of the Institute of 36 36 // Telematics. 37 // [Licen ce]37 // [License] 38 38 39 39 #ifndef UTILITIES_HPP_ … … 60 60 /* check whether X is a signed integer */ 61 61 #define if_int(X) \ 62 typename boost::enable_if<boost::is_integral<X>, int>::type __i##X = 0,\63 typename boost::enable_if<boost::is_signed<X>, int>::type __s##X = 062 typename boost::enable_if<boost::is_integral<X>,void*>::type __i##X = NULL,\ 63 typename boost::enable_if<boost::is_signed<X>,void*>::type __s##X = NULL 64 64 65 65 /* signature conversion */ … … 74 74 CONVERT_SIGN( uint32_t, int32_t ); 75 75 CONVERT_SIGN( uint64_t, int64_t ); 76 76 77 #endif /* UTILITIES_HPP_ */
Note:
See TracChangeset
for help on using the changeset viewer.