Results 1 to 2 of 2
I am using a library in my Qt application which is built and generated by lex and yacc compiler. When I am calling first time the function it’s working fine, ...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 11-14-2012 #1Just Joined!
- Join Date
- Nov 2012
- Posts
- 1
flex bison question
I am using a library in my Qt application which is built and generated by lex and yacc compiler. When I am calling first time the function it’s working fine, a good file. Next time running a bad file from within the same application for which it throws an error, from within the same application, now if I call next time for the good file also it throws the error. The problem is the error. If an error occurs then next time onwards it throws error for even for a good file. How can I clear the error stream so that it runs good for the good file. Any help is highly appreciated. Thanks Sujan
Code:bool upgrade_model(char *model, string &newModel); //this function is exposed by the static library.
How can I clear the error stream in the begining when a call is made to the function upgrade_model()Code:string newmodel; bool upgraded = upgrade_model("/home/red/good.model",&newmodel); // it runs fine upgraded = upgrade_model("/home/red/bad.model",&newmodel); //it throws error upgraded = upgrade_model("/home/red/good.model",&newmodel); //it throws errorLast edited by appollosputnik; 11-14-2012 at 03:26 PM.
- 03-05-2013 #2Linux Guru
- Join Date
- Apr 2009
- Location
- I can be found either 40 miles west of Chicago, or in a galaxy far, far away.
- Posts
- 10,143
Since this is almost 4 months old, I hope you have sorted it out. If not, then I can only surmise that it is a bug - either in the code itself, or on the flex/bison rules that generate the state machine that is running in the library to process these files. If you can manually clear the error flag that may be at issue here in your code, then that may a work-around, otherwise you will have to dig deeper, such as building the module in debug mode and then running the application in the debugger.
Sometimes, real fast is almost as good as real time.
Just remember, Semper Gumbi - always be flexible!


Reply With Quote
