Skip to content

Commit

Permalink
CSV reader bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
bilgilid committed May 17, 2018
1 parent 982201a commit 985b0c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build/src/csv_reader.h
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ class MISSING_DATA_END_TAG: public std::exception {
class DATA_MISMATCH: public std::exception {
public:
DATA_MISMATCH(std::size_t line) {
m_errMsg = "CSV Reader Error: Number of data columns is not equal to "
"the number of headers on line " + std::to_string(line);
m_errMsg = "CSV Reader Error: The number of data columns is not equal "
"to the number of headers on line " + std::to_string(line);
}

virtual const char* what() const noexcept {
Expand Down

0 comments on commit 985b0c7

Please sign in to comment.