-
Notifications
You must be signed in to change notification settings - Fork 118
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
Cleanup in ivocmain.cpp
#3297
base: master
Are you sure you want to change the base?
Cleanup in ivocmain.cpp
#3297
Conversation
9d111ee
to
42b438c
Compare
e019308
to
0f4f052
Compare
Quality Gate passedIssues Measures |
✔️ 78d8a9a -> Azure artifacts URL |
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #3297 +/- ##
=======================================
Coverage 67.07% 67.07%
=======================================
Files 571 571
Lines 111055 111060 +5
=======================================
+ Hits 74487 74491 +4
- Misses 36568 36569 +1 ☔ View full report in Codecov by Sentry. |
} | ||
char buf[256]; | ||
Sprintf(buf, | ||
"Can't load NEURON resources from %s[aults]", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The block can be simplify with:
fmt::print("Can't load NEURON resources from {}[aults]\n", nrn_def_path1);
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice!
No description provided.