openbabel:smilesorder

Last commit made on 2020-10-14
Get this branch:
git clone -b smilesorder https://git.launchpad.net/openbabel

Branch merges

Branch information

Name:
smilesorder
Repository:
lp:openbabel

Recent commits

b9d3110... by baoilleach

Ensure that specifying the output atom order in SMILES does not cause any hydrogens to be suppressed

4709b07... by Geoff Hutchison <email address hidden>

Merge pull request #2239 from baoilleach/py27_support

Support Python 2.7 in setup.py

d927b6e... by baoilleach

Revert the slash n change

732444b... by baoilleach

Support Python 2.7. Also Python 3.8.

38c33ac... by Geoff Hutchison <email address hidden>

Merge pull request #2232 from afonari/patch-20

Fix memory leaks in parsmart.cpp and smartstest.cpp

e8ca4ff... by Geoff Hutchison <email address hidden>

Merge pull request #2235 from jcbollinger/examples_build

Fix examples failing to build with GCC / libstdc++ v8.3

faba3b7... by John Bollinger <email address hidden>

Fix examples build failure with GCC / libstdc++ v8.3

The example program obconformersearch_default does not build
successfully with GCC 8.3.1 and its accompanying C++ standard
library. The issue revolves around its use of a non-namespaced
shared_ptr template. Since the source already includes the header
needed to use OB's shared pointer alias, obsharedptr, this
commit resolves the issue by using that alias (as opposed to
by using std::shared_ptr explicitly).

2026247... by Alexandr Fonari <email address hidden>

Fix memory leak in parsmart.cpp

11fcb76... by Alexandr Fonari <email address hidden>

Fix memory leak in smartstest.cpp

303fc60... by Geoff Hutchison <email address hidden>

Merge pull request #2227 from jcbollinger/catch_by_reference

Fixes catching polymorphic exceptions by value