Skip to content

Commit

Permalink
#1319 Directional bonds not work with SMART
Browse files Browse the repository at this point in the history
Fix typo
  • Loading branch information
AliaksandrDziarkach committed Oct 13, 2023
1 parent 402bdb6 commit 787ca28
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/indigo-core/molecule/src/query_molecule.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -868,11 +868,11 @@ QueryMolecule::Atom::~Atom()
{
}

QueryMolecule::Bond::Bond() : Node(OP_NONE)
QueryMolecule::Bond::Bond() : Node(OP_NONE), value(0), direction(0)
{
}

QueryMolecule::Bond::Bond(int type_, int value_) : Node(type_), value(value_)
QueryMolecule::Bond::Bond(int type_, int value_) : Node(type_), value(value_), direction(0)
{
}

Expand Down

0 comments on commit 787ca28

Please sign in to comment.