38 #ifndef YY_KRIPKEYY_LOCATION_HH_INCLUDED
39 # define YY_KRIPKEYY_LOCATION_HH_INCLUDED
46 #line 47 "location.hh"
150 return !(loc1 == loc2);
159 template <
typename YYChar>
160 inline std::basic_ostream<YYChar>&
161 operator<< (std::basic_ostream<YYChar>& ostr,
const location& loc)
166 && (!loc.begin.filename
167 || *loc.begin.filename != *last.
filename))
169 else if (loc.begin.line != last.
line)
170 ostr <<
'-' << last.
line <<
'.' << last.
column;
171 else if (loc.begin.column != last.
column)
172 ostr <<
'-' << last.
column;
179 #line 180 "location.hh"