I have modified one of the C++ Openfoam's libraries. Everything compiles well, without errors. However, when I run program, it brakes with error. When I use debugger, I find that program skips command that I desperately need.
Here is the problematic block. Last line of the block is skipped from unknown reason to me.
In debugger I can put temporary break point and than there is an option step into.
I can do this for every line except for the last.
When I try to enter into the last command, it transfers me to the following block. The result of successful command should be one saved file, like for the other commands before this last problematic.
These commands are similar, but there is something that misses me.
I put info like you said, compiled library, run program and nothing happened. I did the same thing for lines before last problematic line, and again nothing happened.
Problem was that I compiled only library, and I thought that was enough. I had to compile whole program again.
Now it works.
Thank you so much! I am very, very grateful to you.