Skip to content

Commit

Permalink
indigo-core: fix #47. Fixed CML saver.
Browse files Browse the repository at this point in the history
  • Loading branch information
IuriiPuzanov committed Apr 15, 2016
1 parent 9005d34 commit dd10300
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions molecule/src/molecule_cml_saver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ IMPL_ERROR(MoleculeCmlSaver, "molecule CML saver");
MoleculeCmlSaver::MoleculeCmlSaver (Output &output) : _output(output)
{
skip_cml_tag = false;
_doc = new TiXmlDocument();
_root = 0;
}

void MoleculeCmlSaver::saveMolecule (Molecule &mol)
{
LocaleGuard locale_guard;
int i;
_doc = new TiXmlDocument();
_root = 0;

_mol = &mol;

Expand Down

0 comments on commit dd10300

Please sign in to comment.