summaryrefslogtreecommitdiffstats
path: root/src/util.h
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2020-09-15 10:30:40 (GMT)
committeralbert-github <albert.tests@gmail.com>2020-09-15 10:30:40 (GMT)
commita88b298bee89f001072c80e32e04dfd855d05c58 (patch)
tree0a1d06808ba9db730e2016bd5150116e298c38c4 /src/util.h
parent0fc06d657d596adcc289a5f228973ea268efd66d (diff)
downloadDoxygen-a88b298bee89f001072c80e32e04dfd855d05c58.zip
Doxygen-a88b298bee89f001072c80e32e04dfd855d05c58.tar.gz
Doxygen-a88b298bee89f001072c80e32e04dfd855d05c58.tar.bz2
Incorrect duplicate code for Fortran fixed/free recognition
There were 2 routines to recognize whether Fortran code was Fixed of Free format code, though the version in `commentcnv.l` didn't take the settings of `EXTENSION_MAPPING` into account which might lead to incorrect recognition of the format, this has been corrected.
Diffstat (limited to 'src/util.h')
-rw-r--r--src/util.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/util.h b/src/util.h
index 7de25ee..937b5b6 100644
--- a/src/util.h
+++ b/src/util.h
@@ -502,4 +502,7 @@ int usedTableLevels();
void incUsedTableLevels();
void decUsedTableLevels();
+bool recognizeFixedForm(const char* contents, FortranFormat format);
+FortranFormat convertFileNameFortranParserCode(QCString fn);
+
#endif