mlpack  master
deprecated.hpp
Go to the documentation of this file.
1 
12 #ifndef MLPACK_CORE_UTIL_DEPRECATED_HPP
13 #define MLPACK_CORE_UTIL_DEPRECATED_HPP
14 
15 #ifdef __GNUG__
16 #define mlpack_deprecated __attribute__((deprecated))
17 #elif defined(_MSC_VER)
18 #define mlpack_deprecated __declspec(deprecated)
19 #else
20 #pragma message("WARNING: You need to implement mlpack_deprecated for this "
21  "compiler")
23 #endif
24 
25 #endif
#define mlpack_deprecated
Definition: deprecated.hpp:22