We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0a13db0 + f4bd5e3 commit f11dcccCopy full SHA for f11dccc
src/util.cpp
@@ -6647,8 +6647,8 @@ QCString extractDirection(QCString &docs)
6647
),dir.end());
6648
unsigned char ioMask=0;
6649
size_t inIndex = dir.find( "in");
6650
- size_t outIndex = dir.find("out");
6651
if ( inIndex!=std::string::npos) dir.erase( inIndex,2),ioMask|=(1<<0);
+ size_t outIndex = dir.find("out");
6652
if (outIndex!=std::string::npos) dir.erase(outIndex,3),ioMask|=(1<<1);
6653
if (dir.empty() && ioMask!=0) // only in and/or out attributes found
6654
{
0 commit comments