Skip to content

Commit 3fa5acc

Browse files
committed
Renamed CLANG_INCLUDE_INPUT_PATHS to CLANG_ADD_INC_PATHS
The name is too long making the generated config file look ugly.
1 parent 3867926 commit 3fa5acc

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/clangparser.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ void ClangTUParser::parse()
163163
//printf("ClangTUParser::ClangTUParser(fileName=%s,#filesInSameTU=%d)\n",
164164
// qPrint(fileName),(int)p->filesInSameTU.size());
165165
bool clangAssistedParsing = Config_getBool(CLANG_ASSISTED_PARSING);
166-
bool clangIncludeInputPaths = Config_getBool(CLANG_INCLUDE_INPUT_PATHS);
166+
bool clangIncludeInputPaths = Config_getBool(CLANG_ADD_INC_PATHS);
167167
bool filterSourceFiles = Config_getBool(FILTER_SOURCE_FILES);
168168
const StringVector &includePath = Config_getList(INCLUDE_PATH);
169169
const StringVector &clangOptions = Config_getList(CLANG_OPTIONS);

src/config.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1740,10 +1740,10 @@ to disable this feature.
17401740
]]>
17411741
</docs>
17421742
</option>
1743-
<option type='bool' id='CLANG_INCLUDE_INPUT_PATHS' setting='USE_LIBCLANG' defval='1'>
1743+
<option type='bool' id='CLANG_ADD_INC_PATHS' setting='USE_LIBCLANG' defval='1'>
17441744
<docs>
17451745
<![CDATA[
1746-
If clang assisted parsing is enabled and the \c CLANG_INCLUDE_INPUT_PATHS tag
1746+
If clang assisted parsing is enabled and the \c CLANG_ADD_INC_PATHS tag
17471747
is set to \c YES then doxygen will add the directory of each input to the
17481748
include path.
17491749
]]>

0 commit comments

Comments
 (0)