Skip to content

Commit 5404611

Browse files
committed
warning-fix: remove 'unnecessary parentheses'-warning
GCC 8.2 warns: csv.h:1099:22: warning: unnecessary parentheses in declaration of ‘row’ [-Wparentheses] This commit fixes it.
1 parent 8cf591a commit 5404611

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

csv.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1112,7 +1112,7 @@ namespace io{
11121112
private:
11131113
LineReader in;
11141114

1115-
char*(row[column_count]);
1115+
char*row[column_count];
11161116
std::string column_names[column_count];
11171117

11181118
std::vector<int>col_order;

0 commit comments

Comments
 (0)