Commit c2201ce0 authored by Manu343726's avatar Manu343726 Committed by Victor Zverovich

Accept wide chars as integers to prevent conversion warning

parent 6efbccb3
......@@ -110,7 +110,7 @@ class ArgConverter : public ArgVisitor<ArgConverter<T>, void> {
visit_any_int(value);
}
void visit_char(char value) {
void visit_char(int value) {
if (type_ != 's')
visit_any_int(value);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment