STYLE: remove erroneous section-label on doxygen @endcond

This commit is contained in:
Mark Olesen
2010-05-07 15:30:27 +02:00
parent 3dd66066a7
commit 5087125424
19 changed files with 23 additions and 25 deletions

View File

@ -63,7 +63,7 @@ namespace Foam
} }
} }
//! @endcond fileScope //! @endcond
} // End namespace Foam } // End namespace Foam

View File

@ -58,7 +58,7 @@ namespace Foam
} }
} }
//! @endcond fileScope //! @endcond
} // End namespace Foam } // End namespace Foam

View File

@ -64,7 +64,7 @@ namespace Foam
} }
} }
//! @endcond fileScope //! @endcond
} // End namespace Foam } // End namespace Foam

View File

@ -37,8 +37,8 @@ BEGIN {
} }
{ print } { print }
END { END {
print "//! @endcond OpenFOAMIgnoreAppDoxygen" print "//! @endcond"
} }
# ----------------------------------------------------------------------------- # -----------------------------------------------------------------------------

View File

@ -74,7 +74,7 @@ FNR == 1 {
END { END {
if (state == 2) if (state == 2)
{ {
print "//! @endcond OpenFOAMIgnoreAppDoxygen" print "//! @endcond"
} }
} }

View File

@ -172,7 +172,7 @@ public:
initValidTables(); initValidTables();
}; };
//! @endcond ignoreDocumentation //! @endcond
// Constructors // Constructors

View File

@ -63,7 +63,7 @@ public:
}; };
deleteControlDictPtr deleteControlDictPtr_; deleteControlDictPtr deleteControlDictPtr_;
//! @endcond ignoreDocumentation //! @endcond
} // End namespace debug } // End namespace debug

View File

@ -41,7 +41,7 @@ static const Foam::List<Foam::word> subDictNames
( (
Foam::IStringStream("(preconditioner smoother)")() Foam::IStringStream("(preconditioner smoother)")()
); );
//! @endcond localScope //! @endcond
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //

View File

@ -49,7 +49,7 @@ Description
// The bytes used to pad buffer to the next 64-byte boundary. // The bytes used to pad buffer to the next 64-byte boundary.
// (RFC 1321, 3.1: Step 1) // (RFC 1321, 3.1: Step 1)
static const unsigned char fillbuf[64] = { 0x80, 0 /* , 0, 0, ... */ }; static const unsigned char fillbuf[64] = { 0x80, 0 /* , 0, 0, ... */ };
//! @endcond fileScope //! @endcond
// * * * * * * * * * * * * Static Member Functions * * * * * * * * * * * * * // // * * * * * * * * * * * * Static Member Functions * * * * * * * * * * * * * //

View File

@ -32,7 +32,7 @@ License
//! @cond fileScope //! @cond fileScope
const char hexChars[] = "0123456789abcdef"; const char hexChars[] = "0123456789abcdef";
//! @endcond fileScope //! @endcond
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //

View File

@ -48,7 +48,7 @@ namespace Foam
// if necessary // if necessary
//! @cond fileScope //! @cond fileScope
labelList maxSendSize; labelList maxSendSize;
//! @endcond fileScope //! @endcond
// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //

View File

@ -35,7 +35,7 @@ namespace Foam
// Outstanding non-blocking operations. // Outstanding non-blocking operations.
//! @cond fileScope //! @cond fileScope
DynamicList<MPI_Request> PstreamGlobals::outstandingRequests_; DynamicList<MPI_Request> PstreamGlobals::outstandingRequests_;
//! @endcond fileScope //! @endcond
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

View File

@ -39,7 +39,7 @@ namespace Foam
{ {
return dim > 1 ? pow(expRatio, 1.0/(dim - 1)) : 0.0; return dim > 1 ? pow(expRatio, 1.0/(dim - 1)) : 0.0;
} }
//! @endcond fileScope //! @endcond
} // End namespace Foam } // End namespace Foam

View File

@ -43,7 +43,7 @@ namespace Foam
{ {
return (k + j*nn[2] + i*nn[1]*nn[2]); return (k + j*nn[2] + i*nn[1]*nn[2]);
} }
//! @endcond fileScope //! @endcond
} // End namespace Foam } // End namespace Foam

View File

@ -35,7 +35,7 @@ License
//! @cond localScope //! @cond localScope
const Foam::scalar zeroish = Foam::SMALL; const Foam::scalar zeroish = Foam::SMALL;
const Foam::scalar positive = Foam::SMALL * 1E3; const Foam::scalar positive = Foam::SMALL * 1E3;
//! @endcond localScope //! @endcond
// * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * // // * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * //

View File

@ -44,7 +44,7 @@ int yyFlexLexer::yylex()
<< abort(FatalError); << abort(FatalError);
return 0; return 0;
} }
//! @endcond dummy //! @endcond
// Dummy yywrap to keep yylex happy at compile time. // Dummy yywrap to keep yylex happy at compile time.
// It is called by yylex but is not used as the mechanism to change file. // It is called by yylex but is not used as the mechanism to change file.
@ -58,7 +58,7 @@ int yyFlexLexer::yywrap()
{ {
return 1; return 1;
} }
//! @endcond dummy //! @endcond
//- A lexer for parsing STL ASCII files. //- A lexer for parsing STL ASCII files.

View File

@ -47,7 +47,7 @@ int yyFlexLexer::yylex()
return 0; return 0;
} }
//! @endcond dummy //! @endcond
// Dummy yywrap to keep yylex happy at compile time. // Dummy yywrap to keep yylex happy at compile time.
@ -62,7 +62,7 @@ int yyFlexLexer::yywrap()
{ {
return 1; return 1;
} }
//! @endcond dummy //! @endcond
Foam::string foamSpecieString(const char* YYText) Foam::string foamSpecieString(const char* YYText)

View File

@ -47,7 +47,7 @@ int yyFlexLexer::yylex()
<< abort(FatalError); << abort(FatalError);
return 0; return 0;
} }
//! @endcond dummy //! @endcond
// Dummy yywrap to keep yylex happy at compile time. // Dummy yywrap to keep yylex happy at compile time.
// It is called by yylex but is not used as the mechanism to change file. // It is called by yylex but is not used as the mechanism to change file.
@ -61,7 +61,7 @@ int yyFlexLexer::yywrap()
{ {
return 1; return 1;
} }
//! @endcond dummy //! @endcond
class STLLexer class STLLexer

View File

@ -204,8 +204,6 @@ void Parser::importDir(const std::string& name)
//! @cond fileScope //! @cond fileScope
//
// //
// Create by copying str - only used locally // Create by copying str - only used locally
inline static wchar_t* coco_string_create(const wchar_t* str) 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; str = NULL;
} }
// //
//! @endcond fileScope //! @endcond
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------