summaryrefslogtreecommitdiffstats
path: root/src/doxygen.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2020-03-15 13:32:12 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2020-03-15 13:32:12 (GMT)
commit48a7afc0caf69857a42b0fe1963db3440cb4000f (patch)
tree9a63e2b3750a56174811aace9992b34542e5ae1d /src/doxygen.cpp
parent43420bd77408559cb66c83e9ce601426b371bc74 (diff)
downloadDoxygen-48a7afc0caf69857a42b0fe1963db3440cb4000f.zip
Doxygen-48a7afc0caf69857a42b0fe1963db3440cb4000f.tar.gz
Doxygen-48a7afc0caf69857a42b0fe1963db3440cb4000f.tar.bz2
Remove support for TCL (code is too buggy and unmaintained, language not very popular)
Diffstat (limited to 'src/doxygen.cpp')
-rw-r--r--src/doxygen.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/doxygen.cpp b/src/doxygen.cpp
index cc6b898..8bc65f5 100644
--- a/src/doxygen.cpp
+++ b/src/doxygen.cpp
@@ -81,7 +81,6 @@
#include "fortranscanner.h"
#include "xmlcode.h"
#include "sqlcode.h"
-#include "tclscanner.h"
#include "code.h"
#include "portable.h"
#include "vhdljjparser.h"
@@ -9810,8 +9809,6 @@ void initDoxygen()
std::make_unique<XMLCodeParser>());
Doxygen::parserManager->registerParser("sql", std::make_unique<NullOutlineParser>(),
std::make_unique<SQLCodeParser>());
- Doxygen::parserManager->registerParser("tcl", std::make_unique<TclOutlineParser>(),
- std::make_unique<TclCodeParser>());
Doxygen::parserManager->registerParser("md", std::make_unique<MarkdownOutlineParser>(),
std::make_unique<FileCodeParser>());