Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cross platform build using cmake (Linux, Windows, MacOS) and update license from GPL/LGPL v3 to BSD 3-clause #42

Merged
merged 9 commits into from
Aug 8, 2019
Prev Previous commit
Next Next commit
Checking if object has a type.
  • Loading branch information
gbesancon-schlumberger committed Jul 9, 2019
commit 28679e58495e0d4f0abab7fe974fec793d44cf19
4 changes: 3 additions & 1 deletion libraries/VAL/src/valLib.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -808,7 +808,9 @@ LPCSTR getState(void *v) {
for (const_symbol_list::const_iterator i =
current_analysis->the_problem->objects->begin();
i != current_analysis->the_problem->objects->end(); ++i) {
out << (*i)->getName() << " - " << (*i)->type->getName() << "\n";
out << (*i)->getName();
if ((*i)->type) out << " - " << (*i)->type->getName();
out << "\n";
}

out << ")\n";
Expand Down