Code indexing in gitaly is broken and leads to code not being visible to the user. We work on the issue with highest priority.

Skip to content
Snippets Groups Projects
Commit 72365540 authored by Achim Gsell's avatar Achim Gsell
Browse files

src/include/h5core/h5_log.h: missing backslashes in definition of macro...

src/include/h5core/h5_log.h: missing backslashes in definition of macro 'H5_API_ENTER()' if NDEBUG is set fixed
parent 4daf9b78
No related branches found
No related tags found
No related merge requests found
......@@ -210,11 +210,11 @@ h5_get_loglevel (
// function enter macro
#if defined(NDEBUG)
#define H5_API_ENTER(type, fmt, ...) \
type ret_value = (type)H5_ERR;
h5_initialize();
#define H5_API_ENTER(type, fmt, ...) \
type ret_value = (type)H5_ERR; \
h5_initialize(); \
h5_call_stack_reset (); \
h5_call_stack_push (__func__,e_##type); \
h5_call_stack_push (__func__,e_##type);
#else // NDEBUG not defined
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment