Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Parameters/Value_impl.hpp

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