Changes in src/Parameters/Value_impl.hpp [0d4168:b56114]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Parameters/Value_impl.hpp
r0d4168 rb56114 120 120 { 121 121 if (!isValid(value)) throw ParameterValueException(); 122 if (!ValueSet) throw ParameterValueException(); 123 return value; 124 } 125 126 /** Getter of value without any validation 127 * 128 * @return value 129 */ 130 template <class T> 131 inline const T & Value<T>::getUnvalidated() const throw(ParameterValueException) 132 { 122 133 if (!ValueSet) throw ParameterValueException(); 123 134 return value;
Note:
See TracChangeset
for help on using the changeset viewer.