mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
STYLE: remove erroneous section-label on doxygen @endcond
This commit is contained in:
@ -63,7 +63,7 @@ namespace Foam
|
||||
}
|
||||
|
||||
}
|
||||
//! @endcond fileScope
|
||||
//! @endcond
|
||||
|
||||
} // End namespace Foam
|
||||
|
||||
|
||||
@ -58,7 +58,7 @@ namespace Foam
|
||||
}
|
||||
|
||||
}
|
||||
//! @endcond fileScope
|
||||
//! @endcond
|
||||
|
||||
} // End namespace Foam
|
||||
|
||||
|
||||
@ -64,7 +64,7 @@ namespace Foam
|
||||
}
|
||||
|
||||
}
|
||||
//! @endcond fileScope
|
||||
//! @endcond
|
||||
|
||||
} // End namespace Foam
|
||||
|
||||
|
||||
@ -39,6 +39,6 @@ BEGIN {
|
||||
{ print }
|
||||
|
||||
END {
|
||||
print "//! @endcond OpenFOAMIgnoreAppDoxygen"
|
||||
print "//! @endcond"
|
||||
}
|
||||
# -----------------------------------------------------------------------------
|
||||
|
||||
@ -74,7 +74,7 @@ FNR == 1 {
|
||||
END {
|
||||
if (state == 2)
|
||||
{
|
||||
print "//! @endcond OpenFOAMIgnoreAppDoxygen"
|
||||
print "//! @endcond"
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@ -172,7 +172,7 @@ public:
|
||||
|
||||
initValidTables();
|
||||
};
|
||||
//! @endcond ignoreDocumentation
|
||||
//! @endcond
|
||||
|
||||
|
||||
// Constructors
|
||||
|
||||
@ -63,7 +63,7 @@ public:
|
||||
};
|
||||
|
||||
deleteControlDictPtr deleteControlDictPtr_;
|
||||
//! @endcond ignoreDocumentation
|
||||
//! @endcond
|
||||
|
||||
|
||||
} // End namespace debug
|
||||
|
||||
@ -41,7 +41,7 @@ static const Foam::List<Foam::word> subDictNames
|
||||
(
|
||||
Foam::IStringStream("(preconditioner smoother)")()
|
||||
);
|
||||
//! @endcond localScope
|
||||
//! @endcond
|
||||
|
||||
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
||||
|
||||
|
||||
@ -49,7 +49,7 @@ Description
|
||||
// The bytes used to pad buffer to the next 64-byte boundary.
|
||||
// (RFC 1321, 3.1: Step 1)
|
||||
static const unsigned char fillbuf[64] = { 0x80, 0 /* , 0, 0, ... */ };
|
||||
//! @endcond fileScope
|
||||
//! @endcond
|
||||
|
||||
|
||||
// * * * * * * * * * * * * Static Member Functions * * * * * * * * * * * * * //
|
||||
|
||||
@ -32,7 +32,7 @@ License
|
||||
|
||||
//! @cond fileScope
|
||||
const char hexChars[] = "0123456789abcdef";
|
||||
//! @endcond fileScope
|
||||
//! @endcond
|
||||
|
||||
|
||||
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
||||
|
||||
@ -48,7 +48,7 @@ namespace Foam
|
||||
// if necessary
|
||||
//! @cond fileScope
|
||||
labelList maxSendSize;
|
||||
//! @endcond fileScope
|
||||
//! @endcond
|
||||
|
||||
|
||||
// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
|
||||
|
||||
@ -35,7 +35,7 @@ namespace Foam
|
||||
// Outstanding non-blocking operations.
|
||||
//! @cond fileScope
|
||||
DynamicList<MPI_Request> PstreamGlobals::outstandingRequests_;
|
||||
//! @endcond fileScope
|
||||
//! @endcond
|
||||
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
|
||||
@ -39,7 +39,7 @@ namespace Foam
|
||||
{
|
||||
return dim > 1 ? pow(expRatio, 1.0/(dim - 1)) : 0.0;
|
||||
}
|
||||
//! @endcond fileScope
|
||||
//! @endcond
|
||||
|
||||
} // End namespace Foam
|
||||
|
||||
|
||||
@ -43,7 +43,7 @@ namespace Foam
|
||||
{
|
||||
return (k + j*nn[2] + i*nn[1]*nn[2]);
|
||||
}
|
||||
//! @endcond fileScope
|
||||
//! @endcond
|
||||
|
||||
} // End namespace Foam
|
||||
|
||||
|
||||
@ -35,7 +35,7 @@ License
|
||||
//! @cond localScope
|
||||
const Foam::scalar zeroish = Foam::SMALL;
|
||||
const Foam::scalar positive = Foam::SMALL * 1E3;
|
||||
//! @endcond localScope
|
||||
//! @endcond
|
||||
|
||||
// * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * //
|
||||
|
||||
|
||||
@ -44,7 +44,7 @@ int yyFlexLexer::yylex()
|
||||
<< abort(FatalError);
|
||||
return 0;
|
||||
}
|
||||
//! @endcond dummy
|
||||
//! @endcond
|
||||
|
||||
// Dummy yywrap to keep yylex happy at compile time.
|
||||
// It is called by yylex but is not used as the mechanism to change file.
|
||||
@ -58,7 +58,7 @@ int yyFlexLexer::yywrap()
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
//! @endcond dummy
|
||||
//! @endcond
|
||||
|
||||
|
||||
//- A lexer for parsing STL ASCII files.
|
||||
|
||||
@ -47,7 +47,7 @@ int yyFlexLexer::yylex()
|
||||
|
||||
return 0;
|
||||
}
|
||||
//! @endcond dummy
|
||||
//! @endcond
|
||||
|
||||
|
||||
// Dummy yywrap to keep yylex happy at compile time.
|
||||
@ -62,7 +62,7 @@ int yyFlexLexer::yywrap()
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
//! @endcond dummy
|
||||
//! @endcond
|
||||
|
||||
|
||||
Foam::string foamSpecieString(const char* YYText)
|
||||
|
||||
@ -47,7 +47,7 @@ int yyFlexLexer::yylex()
|
||||
<< abort(FatalError);
|
||||
return 0;
|
||||
}
|
||||
//! @endcond dummy
|
||||
//! @endcond
|
||||
|
||||
// Dummy yywrap to keep yylex happy at compile time.
|
||||
// It is called by yylex but is not used as the mechanism to change file.
|
||||
@ -61,7 +61,7 @@ int yyFlexLexer::yywrap()
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
//! @endcond dummy
|
||||
//! @endcond
|
||||
|
||||
|
||||
class STLLexer
|
||||
|
||||
@ -204,8 +204,6 @@ void Parser::importDir(const std::string& name)
|
||||
|
||||
|
||||
//! @cond fileScope
|
||||
//
|
||||
|
||||
//
|
||||
// Create by copying str - only used locally
|
||||
inline static wchar_t* coco_string_create(const wchar_t* str)
|
||||
@ -225,7 +223,7 @@ inline static void coco_string_delete(wchar_t* &str)
|
||||
str = NULL;
|
||||
}
|
||||
//
|
||||
//! @endcond fileScope
|
||||
//! @endcond
|
||||
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
|
||||
Reference in New Issue
Block a user