CLang: macro name is a reserved identifier

Fixing CLang's warning: macro name is a reserved identifier [-Wreserved-id-macro] . According to https://www.gnu.org/software/libc/manual/html_node/Reserved-Names.html, a global name should not start with an underscore.
This commit is contained in:
Mathias Bavay
2019-04-26 18:14:02 +02:00
committed by GitHub
parent ffb0d41b13
commit c943941b24

View File

@@ -22,8 +22,8 @@
* 3. This notice may not be removed or altered from any source distribution.
*/
#ifndef __TINYEXPR_H__
#define __TINYEXPR_H__
#ifndef TINYEXPR_H
#define TINYEXPR_H
#ifdef __cplusplus