Skip to content
Snippets Groups Projects
Commit 3b642cea0363 authored by Reini Urban's avatar Reini Urban
Browse files

fix C++ g++-6 errors

yaml_emitter_write_indicator const char *indicator
parent 14d093f440de
No related branches found
No related tags found
No related merge requests found
......@@ -221,7 +221,7 @@
static int
yaml_emitter_write_indicator(yaml_emitter_t *emitter,
char *indicator, int need_whitespace,
const char *indicator, int need_whitespace,
int is_whitespace, int is_indention);
static int
......@@ -1777,7 +1777,7 @@
static int
yaml_emitter_write_indicator(yaml_emitter_t *emitter,
char *indicator, int need_whitespace,
const char *indicator, int need_whitespace,
int is_whitespace, int is_indention)
{
size_t indicator_length;
......@@ -2174,7 +2174,7 @@
yaml_string_t string)
{
char indent_hint[2];
char *chomp_hint = NULL;
const char *chomp_hint = NULL;
if (IS_SPACE(string) || IS_BREAK(string))
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment