DLR-SC/tixi

Documentation issue due to DEPRECATED macro

Closed this issue · 0 comments

The new deprecated macro makes problems for doxygen. All functions are now name "DEPRECATED" instead with their actual name.

We could rewrite the macro like we used for tigl:

// from: http://stackoverflow.com/questions/295120/c-mark-as-deprecated/21265197#21265197
#if defined(_MSC_VER)
#define DEPRECATED __declspec(deprecated)
#elif defined(__GNUC__)
#define DEPRECATED __attribute__((deprecated))
#else
#pragma message("WARNING: You need to implement DEPRECATED for this compiler")
#define DEPRECATED
#endif