#include "c4/yml/parse_engine.hpp"
#include "c4/error.hpp"
#include "c4/charconv.hpp"
#include "c4/utf.hpp"
#include <ctype.h>
#include "c4/yml/detail/dbgprint.hpp"
#include "c4/yml/filter_processor.hpp"
Go to the source code of this file.
◆ _c4err_
| #define _c4err_ |
( |
|
fmt, |
|
|
|
... |
|
) |
| this->_err("ERROR: " fmt, __VA_ARGS__) |
◆ _c4err
| #define _c4err |
( |
|
fmt | ) |
this->_err("ERROR: {}", fmt) |
◆ _RYML_WITH_TAB_TOKENS
| #define _RYML_WITH_TAB_TOKENS |
( |
|
... | ) |
|
◆ _RYML_WITHOUT_TAB_TOKENS
| #define _RYML_WITHOUT_TAB_TOKENS |
( |
|
... | ) |
__VA_ARGS__ |
◆ _RYML_WITH_OR_WITHOUT_TAB_TOKENS
| #define _RYML_WITH_OR_WITHOUT_TAB_TOKENS |
( |
|
with, |
|
|
|
without |
|
) |
| without |
◆ _c4dbgnextline
| #define _c4dbgnextline |
( |
| ) |
|
Value: do { \
_c4dbgq("\n-----------"); \
_c4dbgt("handling line={}, offset={}B", \
m_evt_handler->m_curr->pos.line, \
m_evt_handler->m_curr->pos.offset); \
} while(0)
Definition at line 36 of file parse_engine.def.hpp.
◆ _ryml_relocate
| #define _ryml_relocate |
( |
|
s | ) |
|
Value: if((s).is_sub(prev_arena)) \
{ \
(s).str = next_arena.str + ((s).str - prev_arena.str); \
}