GIT: Initial state after latest Foundation merge

This commit is contained in:
Andrew Heather
2016-09-20 14:49:08 +01:00
4571 changed files with 115696 additions and 74609 deletions

View File

@ -79,11 +79,7 @@ public:
// Constructors
//- Construct from components
Constant
(
const word& entryName,
const Type& value
);
Constant(const word& entryName, const Type& value);
//- Construct from entry name and dictionary
Constant(const word& entryName, const dictionary& dict);

View File

@ -64,10 +64,10 @@ public:
//- Enumeration for handling out-of-bound values
enum boundsHandling
{
ERROR, /*!< Exit with a FatalError */
WARN, /*!< Issue warning and clamp value (default) */
CLAMP, /*!< Clamp value to the start/end value */
REPEAT /*!< Treat as a repeating list */
ERROR, //!< Exit with a FatalError
WARN, //!< Issue warning and clamp value (default)
CLAMP, //!< Clamp value to the start/end value
REPEAT //!< Treat as a repeating list
};