Skip to content

Commit

Permalink
issue #10763 CREATE_SUBDIRS and C++20 modules: Doxygen doesn't create…
Browse files Browse the repository at this point in the history
… directories

The `module_` should be part of the (file) name not prepended to the directory name.
  • Loading branch information
albert-github committed Mar 29, 2024
1 parent cc81338 commit a2f32a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/moduledef.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ class ModuleDefImpl : public DefinitionMixin<ModuleDef>

QCString ModuleDefImpl::getOutputFileBase() const
{
return "module_"+convertNameToFile(name());
return convertNameToFile("module_" + name());
}

QCString ModuleDefImpl::qualifiedName() const
Expand Down

0 comments on commit a2f32a4

Please sign in to comment.