Skip to content
Snippets Groups Projects
Commit a500f182 authored by ilor's avatar ilor
Browse files

remove PositionRef from valid types in Variables

parent 75de5262
Branches
No related merge requests found
......@@ -150,7 +150,6 @@ protected:
class Variables : detail::Vmap<Value>
, detail::Vmap<Bool>
, detail::Vmap<Position>
, detail::Vmap<PositionRef>
, detail::Vmap<StrSet>
, detail::Vmap<TSet>
{
......@@ -158,7 +157,7 @@ public:
/// Valid value types, should match the inheritance.
/// the type Value must be first, order of other items is not important
typedef boost::mpl::list<Value,
Bool, Position, PositionRef, StrSet, TSet> types;
Bool, Position, StrSet, TSet> types;
/// Constructor, creates an empty instance.
Variables();
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment