Make doc-check pass again without warnings
authorTeemu Murtola <teemu.murtola@gmail.com>
Tue, 8 Jul 2014 03:53:47 +0000 (06:53 +0300)
committerTeemu Murtola <teemu.murtola@gmail.com>
Tue, 8 Jul 2014 03:53:47 +0000 (06:53 +0300)
The include path needs to be updated here as well for tng_io.

Change-Id: I747a00a607fa6df6638dddc24f009565ab923c50

doxygen/gmxtree.py

index e196da3d65a62b90598ac54a2bd5a2c5833dddb8..20773165362f31cdba409d345c720fd1192c49ee 100644 (file)
@@ -681,7 +681,8 @@ class GromacsTree(object):
 
     def find_include_file(self, includedpath):
         """Find a file object corresponding to an include path."""
-        for testdir in ('src', 'src/gromacs/legacyheaders', 'src/external/thread_mpi/include'):
+        for testdir in ('src', 'src/gromacs/legacyheaders', 'src/external/thread_mpi/include',
+                'src/external/tng_io/include'):
             testpath = os.path.join(testdir, includedpath)
             if testpath in self._files:
                 return self._files[testpath]