summaryrefslogtreecommitdiffstats
path: root/src/configoptions.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2011-12-10 20:30:14 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2011-12-10 20:30:14 (GMT)
commitb625258a2f46f61e85bf473dfa64b719755c3b71 (patch)
treebb2f8266e3a639e6a4b15f02416a3aae5173c275 /src/configoptions.cpp
parente48f695c385ccc356e124ac3a851a6228f4f5b84 (diff)
downloadDoxygen-b625258a2f46f61e85bf473dfa64b719755c3b71.zip
Doxygen-b625258a2f46f61e85bf473dfa64b719755c3b71.tar.gz
Doxygen-b625258a2f46f61e85bf473dfa64b719755c3b71.tar.bz2
Release-1.7.6.1
Diffstat (limited to 'src/configoptions.cpp')
-rw-r--r--src/configoptions.cpp18
1 files changed, 16 insertions, 2 deletions
diff --git a/src/configoptions.cpp b/src/configoptions.cpp
index 79c4aa9..0fd507b 100644
--- a/src/configoptions.cpp
+++ b/src/configoptions.cpp
@@ -451,7 +451,20 @@ void addConfigOptions(Config *cfg)
"a logarithmic scale so increasing the size by one will roughly double the\n"
"memory usage. The cache size is given by this formula:\n"
"2^(16+SYMBOL_CACHE_SIZE). The valid range is 0..9, the default is 0,\n"
- "corresponding to a cache size of 2^16 = 65536 symbols",
+ "corresponding to a cache size of 2^16 = 65536 symbols.",
+ 0,9,0
+ );
+ //----
+ ci = cfg->addInt(
+ "LOOKUP_CACHE_SIZE",
+ "Similar to the SYMBOL_CACHE_SIZE the size of the symbol lookup cache can be\n"
+ "set using LOOKUP_CACHE_SIZE. This cache is used to resolve symbols given\n"
+ "their name and scope. Since this can be an expensive process and often the\n"
+ "same symbol appear multiple times in the code, doxygen keeps a cache of\n"
+ "pre-resolved symbols. If the cache is too small doxygen will become slower.\n"
+ "If the cache is too large, memory is wasted. The cache size is given by this\n"
+ "formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range is 0..9, the default is 0,\n"
+ "corresponding to a cache size of 2^16 = 65536 symbols.",
0,9,0
);
//---------------------------------------------------------------------------
@@ -770,7 +783,8 @@ void addConfigOptions(Config *cfg)
".bib extension is automatically appended if omitted. Using this command\n"
"requires the bibtex tool to be installed. See also\n"
"http://en.wikipedia.org/wiki/BibTeX for more info. For LaTeX the style\n"
- "of the bibliography can be controlled using LATEX_BIB_STYLE. To use this feature you need bibtex and perl available in the search path."
+ "of the bibliography can be controlled using LATEX_BIB_STYLE. To use this\n"
+ "feature you need bibtex and perl available in the search path."
);
cl->setWidgetType(ConfigList::File);
//---------------------------------------------------------------------------