~ubuntu-branches/debian/stretch/openbabel/stretch

« back to all changes in this revision

Viewing changes to src/fingerprints/finger3.cpp

  • Committer: Package Import Robot
  • Author(s): Daniel Leidert
  • Date: 2013-05-22 19:08:27 UTC
  • mfrom: (1.1.11) (7.1.9 sid)
  • Revision ID: package-import@ubuntu.com-20130522190827-72q0fnx5y2nm3bc0
Tags: 2.3.2+dfsg-1
* New upstream release.
* debian/control: Dropped DM-Upload-Allowed field.
  (Standards-Version): Bumped to 3.9.4.
* debian/copyright: Massive update.
* debian/upstream: Author name update.
* debian/get-orig-source.sh: Remove the windows-*/ directory too.
* debian/openbabel.install: Removed roundtrip manpage.
* debian/openbabel-gui.install: Fixed manpage name.
* debian/openbabel-gui.links: Removed unused file.
* debian/rules: Enable OpenMP. Disable tests on `nocheck'.
* debian/patches/gaussformat_nosym.patch: Dropped. Applied upstream.
* debian/patches/moldenformat_coordonly.patch: Ditto.
* debian/patches/obspectrophore_man.patch: Ditto.
* debian/patches/fix_ftbfs.patch: Added.
  - Fix several FTBFS issues in upstream build system.
* debian/patches/series: Adjusted.

Show diffs side-by-side

added added

removed removed

Lines of Context:
79
79
  }
80
80
 
81
81
//////////////////////////////////////////////////////////////////////////////
82
 
  //Each bit represents a single substructure; no need for confirmation when substructure searching
 
82
  //Each bit represents a single substructure
83
83
  virtual unsigned int Flags() { return FPT_UNIQUEBITS;};
84
84
 
85
85
///////////////////////////////////////////////////////////////////////////////
229
229
        }
230
230
        if(pos!=string::npos)
231
231
        {
232
 
          ver=line.substr(pos);
 
232
          ver=line.substr(pos) + ' ';//space fixes bug in while() when number at end of line
233
233
          pos=1;
234
234
          while(isdigit(ver[++pos]));
235
235
          ver.erase(pos);