#include "global.h"
#include "internal.hpp"
Go to the source code of this file.
◆ PER
Value: do { \
internal->error_message.init ( \
"%s:%" PRIu64
": parse error: ",
file->name (), \
(uint64_t)
file->lineno ()); \
return internal->error_message.append (__VA_ARGS__); \
} while (0)
Definition at line 15 of file cadical_parse.cpp.
15#define PER(...) \
16 do { \
17 internal->error_message.init ( \
18 "%s:%" PRIu64 ": parse error: ", file->name (), \
19 (uint64_t) file->lineno ()); \
20 return internal->error_message.append (__VA_ARGS__); \
21 } while (0)