Skip to content

Commit a2f32a4

Browse files
committed
issue #10763 CREATE_SUBDIRS and C++20 modules: Doxygen doesn't create directories
The `module_` should be part of the (file) name not prepended to the directory name.
1 parent cc81338 commit a2f32a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/moduledef.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ class ModuleDefImpl : public DefinitionMixin<ModuleDef>
137137

138138
QCString ModuleDefImpl::getOutputFileBase() const
139139
{
140-
return "module_"+convertNameToFile(name());
140+
return convertNameToFile("module_" + name());
141141
}
142142

143143
QCString ModuleDefImpl::qualifiedName() const

0 commit comments

Comments
 (0)