Skip to content

Commit a8c123d

Browse files
committed
issue11782 Groups in XML output do not reference C++ concepts
1 parent e1ff40d commit a8c123d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/xmlgen.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1371,7 +1371,7 @@ static void writeInnerConcepts(const ConceptLinkedRefMap &cl,TextStream &t)
13711371
{
13721372
for (const auto &cd : cl)
13731373
{
1374-
if (cd->isHidden())
1374+
if (!cd->isHidden())
13751375
{
13761376
t << " <innerconcept refid=\"" << cd->getOutputFileBase()
13771377
<< "\">" << convertToXML(cd->name()) << "</innerconcept>\n";
@@ -1383,7 +1383,7 @@ static void writeInnerModules(const ModuleLinkedRefMap &ml,TextStream &t)
13831383
{
13841384
for (const auto &mod : ml)
13851385
{
1386-
if (mod->isHidden())
1386+
if (!mod->isHidden())
13871387
{
13881388
t << " <innermodule refid=\"" << mod->getOutputFileBase()
13891389
<< "\">" << convertToXML(mod->name()) << "</innermodule>\n";

0 commit comments

Comments
 (0)