X-Git-Url: https://git.xonotic.org/?p=xonotic%2Fgmqcc.git;a=blobdiff_plain;f=conout.cpp;h=5eb81db94dcac0dd3069fb244b3baf9bcaab7c26;hp=28d1a43604e1cccafcc750fbeea2fc868099b8ff;hb=620bd76e76804b1fc1de46daa03724e23339e8bf;hpb=76278e8b97578f210b34784a55925b043098def9 diff --git a/conout.cpp b/conout.cpp index 28d1a43..5eb81db 100644 --- a/conout.cpp +++ b/conout.cpp @@ -176,7 +176,7 @@ void vcompile_error(lex_ctx_t ctx, const char *msg, va_list ap) con_cvprintmsg(ctx, LVL_ERROR, "error", msg, ap); } -void compile_error(lex_ctx_t ctx, const char *msg, ...) +void compile_error_(lex_ctx_t ctx, const char *msg, ...) { va_list ap; va_start(ap, msg); @@ -215,7 +215,7 @@ bool GMQCC_WARN vcompile_warning(lex_ctx_t ctx, int warntype, const char *fmt, v return OPTS_WERROR(warntype) && OPTS_FLAG(BAIL_ON_WERROR); } -bool GMQCC_WARN compile_warning(lex_ctx_t ctx, int warntype, const char *fmt, ...) +bool GMQCC_WARN compile_warning_(lex_ctx_t ctx, int warntype, const char *fmt, ...) { bool r; va_list ap;