We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 823c6c6 commit 4ade42dCopy full SHA for 4ade42d
csv.h
@@ -64,10 +64,11 @@ struct base : std::exception {
64
return error_message_buffer;
65
}
66
67
- mutable char error_message_buffer[512];
+ mutable char error_message_buffer[2048];
68
};
69
70
-const int max_file_name_length = 255;
+// this only affects the file name in the error message
71
+const int max_file_name_length = 1024;
72
73
struct with_file_name {
74
with_file_name() { std::memset(file_name, 0, sizeof(file_name)); }
0 commit comments