Ported: Fix header guard in error_macros.h - madmiraal

e2dac6ecd9
This commit is contained in:
Relintai 2022-09-16 22:01:08 +02:00
parent 211cd1e46a
commit 92bc8ed3be

View File

@ -1,5 +1,6 @@
#ifndef ERROR_MACROS_H
#define ERROR_MACROS_H
/*************************************************************************/
/* error_macros.h */
/*************************************************************************/
@ -517,8 +518,6 @@ void _err_flush_stdout();
} else \
((void)0)
#endif
/**
* This should be a 'free' assert for program flow and should not be needed in any releases,
* only used in dev builds.
@ -558,3 +557,5 @@ void _err_flush_stdout();
#else
#define DEV_CHECK_ONCE(m_cond)
#endif
#endif