This repository was archived by the owner on Nov 6, 2022. It is now read-only.

Description
Problem Description
I got a conflict with http_parser.h, which uses the same macro name:
#define XX()
Code to reproduce this issue
#define XX(x) something
Proposed solution
Never use non-descript unqualified macro-names in libs, as these identifier belong to the user and end up breaking their code. So either qualify the define and rename it HTTP_PARSER_XX(), or use the standard X-macro name convention ENTRY().