Skip to content

Commit

Permalink
Fix a couple of warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
lballabio committed Jul 20, 2020
1 parent 42de88a commit d211a06
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
11 changes: 11 additions & 0 deletions Examples/MultidimIntegral/MultidimIntegral.cpp
Expand Up @@ -52,6 +52,9 @@ struct integrand {
};

int main() {

try {

std::cout << std::endl;

/*
Expand Down Expand Up @@ -94,4 +97,12 @@ int main() {
<< endl;

return 0;

} catch (std::exception& e) {
std::cerr << e.what() << std::endl;
return 1;
} catch (...) {
std::cerr << "unknown error" << std::endl;
return 1;
}
}
1 change: 0 additions & 1 deletion ql/math/optimization/spherecylinder.cpp
Expand Up @@ -120,7 +120,6 @@ namespace QuantLib {

}


}

}
Expand Down

0 comments on commit d211a06

Please sign in to comment.