mirror of
				https://github.com/eledio-devices/thirdparty-tinyexpr.git
				synced 2025-10-31 00:32:38 +01:00 
			
		
		
		
	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:
		| @@ -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 | ||||
|   | ||||
		Reference in New Issue
	
	Block a user