Files
mlpack/fastlib/trunk/fastlib/col
Ryan Curtin 503651e4af #22: replace lots of preprocessor macros with what they actually are where possible.
COMPILER_NO_RETURN -> __attribute__((noreturn))
COMPILER_NO_INLINE -> __attribute__((noinline))
COMPILER_PRINTF -> __attribute__((format(printf, X, Y)))
COMPILER_FUNCTIONAL -> __attribute__((const))
COMPILER_DEPRECATED -> __attribute__((deprecated))
COMPILER_DEPRECATED_MSG -> __attribute__((deprecated))
STATIC_CAST(...) -> static_cast<...>(...)
REINTERPRET_CAST(...) -> reinterpret_cast<...>(...)
2010-04-20 14:58:34 +00:00
..