Throwing exception 'std::__ios_failure' when running simple example #167
Closed
HordChurtle
started this conversation in
Q&A
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 |
0 replies
|
I will proceed to close this discussion for now, feel free to re-open it for any follow-up questions. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
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
All reactions