fix(library/tactic/location): clang++ 3.3 compilation problem

This commit is contained in:
Leonardo de Moura 2015-02-04 18:48:23 -08:00
parent 42c2f7eb11
commit 55fb678db2

View file

@ -61,9 +61,10 @@ private:
kind m_kind;
occurrence m_goal;
list<pair<name, occurrence>> m_hyps;
location(kind k, occurrence const & g = occurrence(),
list<pair<name, occurrence>> const & hs = list<pair<name, occurrence>>()):
location(kind k, occurrence const & g, list<pair<name, occurrence>> const & hs):
m_kind(k), m_goal(g), m_hyps(hs) {}
location(kind k, occurrence const & g):m_kind(k), m_goal(g) {}
location(kind k):location(k, occurrence()) {}
public:
location():m_kind(GoalOnly) {}