mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
STYLE: comments, spelling in token.H
This commit is contained in:
@ -87,12 +87,10 @@ public:
|
|||||||
DOUBLE_SCALAR, //!< double (double-precision) type
|
DOUBLE_SCALAR, //!< double (double-precision) type
|
||||||
|
|
||||||
// Pointer types
|
// Pointer types
|
||||||
WORD, //!< Contents represent a Foam::word
|
WORD, //!< A Foam::word
|
||||||
STRING, //!< Contents represent a Foam::string
|
STRING, //!< A string
|
||||||
VARIABLE, //!< Contents are a Foam::string representing a
|
VARIABLE, //!< A dictionary \c \$variable (string variant)
|
||||||
//!< dictionary \c \$variable expansion
|
VERBATIMSTRING, //!< Verbatim string content
|
||||||
VERBATIMSTRING, //!< Contents are a Foam::string representing verbatim
|
|
||||||
//!< content
|
|
||||||
COMPOUND, //!< Compound type such as \c List\<label\> etc.
|
COMPOUND, //!< Compound type such as \c List\<label\> etc.
|
||||||
|
|
||||||
ERROR //!< A token error encountered
|
ERROR //!< A token error encountered
|
||||||
@ -133,7 +131,7 @@ public:
|
|||||||
|
|
||||||
ASSIGN = '=', //!< Assignment/equals [#isseparator]
|
ASSIGN = '=', //!< Assignment/equals [#isseparator]
|
||||||
ADD = '+', //!< Addition [#isseparator]
|
ADD = '+', //!< Addition [#isseparator]
|
||||||
SUBTRACT = '-', //!< Substract or start of negative number
|
SUBTRACT = '-', //!< Subtract or start of negative number
|
||||||
MULTIPLY = '*', //!< Multiply [#isseparator]
|
MULTIPLY = '*', //!< Multiply [#isseparator]
|
||||||
DIVIDE = '/', //!< Divide [#isseparator]
|
DIVIDE = '/', //!< Divide [#isseparator]
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user