diff options
author | Dimitri van Heesch <doxygen@gmail.com> | 2021-04-29 17:16:50 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-29 17:16:50 (GMT) |
commit | c6d77227efaf332a5d24bc12d32f4b1fec6b13b9 (patch) | |
tree | 426ce6b976c194ccabd5ca5bb499325a1044eaee /src | |
parent | 9134b15e46bcc6f8323aa6b24546a17e11f950bf (diff) | |
parent | d5578494bfc9342ae83b544a5200aa630ec0b2eb (diff) | |
download | Doxygen-c6d77227efaf332a5d24bc12d32f4b1fec6b13b9.zip Doxygen-c6d77227efaf332a5d24bc12d32f4b1fec6b13b9.tar.gz Doxygen-c6d77227efaf332a5d24bc12d32f4b1fec6b13b9.tar.bz2 |
Merge pull request #8332 from albert-github/feature/issue_8329
issue #8329 Force line buffering
Diffstat (limited to 'src')
-rw-r--r-- | src/doxygen.cpp | 4 | ||||
-rw-r--r-- | src/doxygen.h | 1 |
2 files changed, 1 insertions, 4 deletions
diff --git a/src/doxygen.cpp b/src/doxygen.cpp index 3850448..f003e8b 100644 --- a/src/doxygen.cpp +++ b/src/doxygen.cpp @@ -152,7 +152,6 @@ bool Doxygen::parseSourcesNeeded = FALSE; SearchIndexIntf *Doxygen::searchIndex=0; SymbolMap<Definition> Doxygen::symbolMap; ClangUsrMap *Doxygen::clangUsrMap = 0; -bool Doxygen::outputToWizard=FALSE; Cache<std::string,LookupInfo> *Doxygen::lookupCache; DirLinkedMap *Doxygen::dirLinkedMap; DirRelationLinkedMap Doxygen::dirRelations; @@ -10137,7 +10136,7 @@ static void devUsage() { msg("Developer parameters:\n"); msg(" -m dump symbol map\n"); - msg(" -b output to wizard\n"); + msg(" -b making messages output unbuffered\n"); msg(" -T activates output generation via Django like template\n"); msg(" -d <level> enable a debug level, such as (multiple invocations of -d are possible):\n"); Debug::printFlags(); @@ -10668,7 +10667,6 @@ void readConfiguration(int argc, char **argv) break; case 'b': setvbuf(stdout,NULL,_IONBF,0); - Doxygen::outputToWizard=TRUE; break; case 'T': msg("Warning: this option activates output generation via Django like template files. " diff --git a/src/doxygen.h b/src/doxygen.h index 3cc6934..f090f1f 100644 --- a/src/doxygen.h +++ b/src/doxygen.h @@ -105,7 +105,6 @@ class Doxygen static SearchIndexIntf *searchIndex; static SymbolMap<Definition> symbolMap; static ClangUsrMap *clangUsrMap; - static bool outputToWizard; static Cache<std::string,LookupInfo> *lookupCache; static DirLinkedMap *dirLinkedMap; static DirRelationLinkedMap dirRelations; |