Skip to content

Commit

Permalink
MMVII: Fix typo in error message
Browse files Browse the repository at this point in the history
  • Loading branch information
meynardc committed Sep 30, 2024
1 parent 625e38a commit 9d625b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MMVII/include/MMVII_Stringifier.h
Original file line number Diff line number Diff line change
Expand Up @@ -541,7 +541,7 @@ template<class Type> inline Type GetV(std::istringstream & iss, const std::strin
iss >> aNum;
if ( ! iss)
{
MMVII_UnclasseUsEr("Bad reading at line " + aSrcFile + " of file [" + std::to_string(aSrcLine+1) + "] , rdstate=" + ToStr((size_t)iss.rdstate()));
MMVII_UnclasseUsEr("Bad reading at line " + std::to_string(aSrcLine+1)+ " of file [" + aSrcFile + "]. (rdstate=" + ToStr((size_t)iss.rdstate()) + ')');
}
return aNum;
}
Expand Down

0 comments on commit 9d625b9

Please sign in to comment.