Skip to content

Commit

Permalink
Fixed potential crash when resolving imports for C++20 modules
Browse files Browse the repository at this point in the history
  • Loading branch information
doxygen committed Aug 19, 2023
1 parent 6256d82 commit e55d17e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/moduledef.cpp
Expand Up @@ -132,7 +132,7 @@ class ModuleDefImpl : public DefinitionMixin<ModuleDef>
ModuleList m_contributing;
MemberGroupList m_memberGroups;
const ModuleDef *m_primaryInterface = nullptr;
FileDef *m_fileDef; // file holding this module
FileDef *m_fileDef = nullptr; // file holding this module
};

QCString ModuleDefImpl::getOutputFileBase() const
Expand Down

0 comments on commit e55d17e

Please sign in to comment.