Throwing exception 'std::__ios_failure' when running simple example #167
Replies: 2 comments
-
Hi @HordChurtle - the issue is most likely that the file
The code in frame stream.open(mPath, std::ios::binary); Thus the exception was thrown when attempting to open the file. To fix this, one can either make sure |
Beta Was this translation helpful? Give feedback.
-
I will proceed to close this discussion for now, feel free to re-open it for any follow-up questions. |
Beta Was this translation helpful? Give feedback.
-
I am using the following code in eclipse using g++ as the compiler. The code compiles, but I get a runtime error.
#include
#include "rapidcsv.h"
using namespace std;
int main() {
}
terminate called after throwing an instance of 'std::__ios_failure'
what(): basic_ios::clear: iostream error
Beta Was this translation helpful? Give feedback.
All reactions