Skip to content

Commit

Permalink
clang fix
Browse files Browse the repository at this point in the history
  • Loading branch information
even1024 committed Dec 18, 2024
1 parent f9008e0 commit 0f0e501
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions core/indigo-core/molecule/src/molecule_cdxml_loader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1593,8 +1593,8 @@ void MoleculeCdxmlLoader::_parseGraphic(BaseCDXElement& elem)
void MoleculeCdxmlLoader::_parseArrow(BaseCDXElement& elem)
{
Rect2f text_bbox;
Vec2f begin_pos;
Vec2f end_pos;
Vec3f begin_pos;
Vec3f end_pos;
std::string fill_type;
std::string arrow_head;
std::string head_type;
Expand Down Expand Up @@ -1638,8 +1638,7 @@ void MoleculeCdxmlLoader::_parseArrow(BaseCDXElement& elem)
ar_type = ReactionComponent::ARROW_BOTH_ENDS_FILLED_TRIANGLE;
}
}

_arrows[arrow_id] = (std::make_pair(std::make_pair(begin_pos, end_pos), ar_type));
_arrows[arrow_id] = std::make_pair(std::make_pair(begin_pos, end_pos), ar_type);
}
}

Expand Down

0 comments on commit 0f0e501

Please sign in to comment.