Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Parameters/Value_impl.hpp

    r0d4168 rb56114  
    120120{
    121121  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 */
     130template <class T>
     131inline const T & Value<T>::getUnvalidated() const throw(ParameterValueException)
     132{
    122133  if (!ValueSet) throw ParameterValueException();
    123134  return value;
Note: See TracChangeset for help on using the changeset viewer.