-
Notifications
You must be signed in to change notification settings - Fork 79
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
Catalyst: Add Tag to Catalyst2 TPL + Cleaning #448
Conversation
Naapple
commented
Apr 1, 2024
- This change makes the Catalyst2 TPL point to a particular tag (v2.0.0) rather than master in the Kitware Catalyst repo. An extra argument needed to be added (CATALYST_WRAP_PYTHON) in the build of the TPL. All SEACAS ctests pass.
- Cleaned up our Catalyst API2 work following the suggestions made in our previous pull request: Catalyst API 2 IOSS Full Implementation Catalyst API 2 IOSS Full Implementation #431
CLA Assistant Lite bot All contributors have signed the CLA ✍️ ✅ |
I have read the CLA Document and I hereby sign the CLA |
@@ -262,7 +262,7 @@ namespace Iocatalyst { | |||
errmsg << "Catalyst pipeline is not a multi-input pipeline"; | |||
IOSS_ERROR(errmsg); | |||
} | |||
auto name = p.catalystMultiInputPipelineName; | |||
const auto name = p.catalystMultiInputPipelineName; |
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.
Could this be const auto &name
@@ -280,7 +280,7 @@ namespace Iocatalyst { | |||
errmsg << "Catalyst pipeline is not a multi-input pipeline"; | |||
IOSS_ERROR(errmsg); | |||
} | |||
auto name = p.catalystMultiInputPipelineName; | |||
const auto name = p.catalystMultiInputPipelineName; |
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.
Same as above.
@@ -262,7 +262,7 @@ namespace Iocatalyst { | |||
errmsg << "Catalyst pipeline is not a multi-input pipeline"; | |||
IOSS_ERROR(errmsg); | |||
} | |||
auto name = p.catalystMultiInputPipelineName; | |||
const auto name = p.catalystMultiInputPipelineName; | |||
for (auto cp : catPipes) { |
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.
Should this be auto &cp
similar to line 284 or maybe even const auto &cp
?
I have read the CLA Document and I hereby sign the CLA |
recheck |