Skip to content

Commit

Permalink
Fix compilation on old gcc
Browse files Browse the repository at this point in the history
  • Loading branch information
vaintroub committed Feb 13, 2019
1 parent 9145173 commit d28dab7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sql/my_json_writer.h
Expand Up @@ -111,7 +111,7 @@ class String_with_limit
{
public:

String_with_limit() : size_limit(SIZE_MAX), truncated_len(0)
String_with_limit() : size_limit(SIZE_T_MAX), truncated_len(0)
{
str.length(0);
}
Expand Down

0 comments on commit d28dab7

Please sign in to comment.