You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
627 B
22 lines
627 B
#pragma once
|
|
/* #undef EXODUS_THREADSAFE */
|
|
|
|
#ifndef SEACAS_DEPRECATED
|
|
# if (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 1))
|
|
# define SEACAS_DEPRECATED __attribute__((__deprecated__))
|
|
# else
|
|
# define SEACAS_DEPRECATED
|
|
# endif
|
|
#endif
|
|
|
|
#ifndef SEACAS_DEPRECATED_MSG
|
|
# if (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 5))
|
|
# define SEACAS_DEPRECATED_MSG(MSG) __attribute__((__deprecated__ (#MSG) ))
|
|
# elif (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 1))
|
|
# define SEACAS_DEPRECATED_MSG(MSG) __attribute__((__deprecated__))
|
|
# else
|
|
# define SEACAS_DEPRECATED_MSG(MSG)
|
|
# endif
|
|
#endif
|
|
|
|
|
|
|