Browse Source

fixed more issues with boost::transform_iterator

Former-commit-id: 3003ba3f74
tempestpy_adaptions
dehnert 9 years ago
parent
commit
1c01a54b53
  1. 6
      src/storage/jani/VariableSet.h

6
src/storage/jani/VariableSet.h

@ -54,8 +54,8 @@ namespace storm {
const_iterator end(); const_iterator end();
private: private:
input_iterator it;
input_iterator ite;
const_input_iterator it;
const_input_iterator ite;
}; };
} }
@ -64,7 +64,7 @@ namespace storm {
typedef typename std::vector<std::shared_ptr<Variable>>::iterator input_iterator; typedef typename std::vector<std::shared_ptr<Variable>>::iterator input_iterator;
typedef typename std::vector<std::shared_ptr<Variable>>::const_iterator const_input_iterator; typedef typename std::vector<std::shared_ptr<Variable>>::const_iterator const_input_iterator;
typedef boost::transform_iterator<detail::Dereferencer<Variable>, input_iterator> iterator; typedef boost::transform_iterator<detail::Dereferencer<Variable>, input_iterator> iterator;
typedef boost::transform_iterator<detail::Dereferencer<Variable>, const_input_iterator> const_iterator;
typedef boost::transform_iterator<detail::Dereferencer<Variable const>, const_input_iterator> const_iterator;
/*! /*!
* Creates an empty variable set. * Creates an empty variable set.

Loading…
Cancel
Save