mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
STYLE: more consistent formatting for deprecated items
- Start brief descriptions with 'Deprecated(YYYY-MM)' so that it is readily visible in the short method description. Consistent date format (YYYY-MM), placed immediately after the \deprecated tag.
This commit is contained in:
@ -81,8 +81,9 @@ public:
|
||||
//- Extract numbers from things like "-2.358-8" (same as "-2.358e-8")
|
||||
static scalar readNasScalar(const std::string& str);
|
||||
|
||||
//- Extract numbers from things like "-2.358-8" (same as "-2.358e-8")
|
||||
// \deprecated use readNasScalar instead (deprecated Sep 2017)
|
||||
//- Deprecated(2017-09)
|
||||
// Extract numbers from things like "-2.358-8" (same as "-2.358e-8")
|
||||
// \deprecated(2017-09) - use readNasScalar() method
|
||||
inline static scalar parseNASCoord(const std::string& str)
|
||||
{
|
||||
return readNasScalar(str);
|
||||
|
||||
Reference in New Issue
Block a user