gzdoom/tools/re2c/src/parse/extop.h
2016-02-06 20:58:35 -06:00

17 lines
210 B
C++

#ifndef _RE2C_PARSE_EXTOP_
#define _RE2C_PARSE_EXTOP_
#include "src/util/c99_stdint.h"
namespace re2c
{
struct ExtOp
{
uint32_t min;
uint32_t max;
};
} // end namespace re2c
#endif // _RE2C_PARSE_EXTOP_