Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Christian Butz
VTK
Commits
9e8a3d73
Commit
9e8a3d73
authored
Dec 21, 2010
by
David Partyka
Browse files
vtkhdf5: Adjust H5_IS_API macro to handle vtk__ mangling.
parent
75a21390
Changes
1
Hide whitespace changes
Inline
Side-by-side
Utilities/vtkhdf5/src/H5private.h
View file @
9e8a3d73
...
...
@@ -1649,7 +1649,9 @@ H5_DLL double H5_trace(const double *calltime, const char *func, const char *typ
/* `S' is the name of a function which is being tested to check if its */
/* an API function */
#define H5_IS_API(S) ('_'!=((const char *)S)[2] && '_'!=((const char *)S)[3] && (!((const char *)S)[4] || '_'!=((const char *)S)[4]))
#define H5_IS_API(S) (('_'!=((const char *)S)[2] && '_'!=((const char *)S)[3] && (!((const char *)S)[4] || '_'!=((const char *)S)[4])) || \
('_'!=((const char *)S)[7] && '_'!=((const char *)S)[8] && (!((const char *)S)[9] || '_'!=((const char *)S)[9])))
/* global library version information string */
extern
char
H5_lib_vers_info_g
[];
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment