Skip to content

Commit

Permalink
IOSS: Eliminte unused variable warning
Browse files Browse the repository at this point in the history
  • Loading branch information
gsjaardema committed Feb 19, 2024
1 parent 43ab3b3 commit a37aad7
Showing 1 changed file with 2 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright(C) 1999-2021 National Technology & Engineering Solutions
// Copyright(C) 1999-2021, 2024 National Technology & Engineering Solutions
// of Sandia, LLC (NTESS). Under the terms of Contract DE-NA0003525 with
// NTESS, the U.S. Government retains certain rights in this software.
//
Expand Down Expand Up @@ -1111,11 +1111,6 @@ namespace Iocatalyst {
bool DatabaseIO::begin_nl(Ioss::State state)
{
this->dbState = state;
if (is_input()) {
if (state == Ioss::STATE_TRANSIENT) {
auto &impl = (*this->Impl.get());
}
}
return true;
}

Expand Down Expand Up @@ -1165,7 +1160,7 @@ namespace Iocatalyst {
if (this->is_input()) {}
else {
// invoke catalyst.
auto &impl = (*this->Impl.get());
auto &impl = (*this->Impl.get());
auto &dbaseNode = this->Impl->databaseNode();
dbaseNode[detail::REGION + detail::FS + detail::TIME].set_float64(time);
conduit_cpp::Node node;
Expand Down

0 comments on commit a37aad7

Please sign in to comment.