Browse Source

SourceLocation: Added const to operator== and operator!=

merge-requests/37/head
eidheim 8 years ago
parent
commit
a125fd759f
  1. 4
      src/SourceLocation.h

4
src/SourceLocation.h

@ -6,8 +6,8 @@
namespace clangmm { namespace clangmm {
class Offset { class Offset {
public: public:
bool operator==(const clangmm::Offset &o) {return line==o.line && index==o.index;} bool operator==(const clangmm::Offset &o) const {return line==o.line && index==o.index;}
bool operator!=(const clangmm::Offset &o) {return !(*this==o);} bool operator!=(const clangmm::Offset &o) const {return !(*this==o);}
unsigned line; unsigned line;
unsigned index; //byte index in line (not char number) unsigned index; //byte index in line (not char number)
}; };

Loading…
Cancel
Save