Fix formatting and naming

This commit is contained in:
Victor Zverovich
2017-10-22 07:19:45 -07:00
parent 91014f0171
commit a38bd9ca24

View File

@ -1106,11 +1106,11 @@ struct string_value {
template <typename Char>
struct custom_value {
typedef void (*FormatFunc)(
typedef void (*format_func)(
basic_buffer<Char> &buffer, const void *arg, void *ctx);
const void *value;
FormatFunc format;
format_func format;
};
template <typename Char>