Make CompareStringPtrs::operator() a const method
Patch by Julian Seward <jseward@acm.org>, R=ted git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@1118 4c0a9323-5329-0410-9bdc-e9ce6186880e
This commit is contained in:
parent
111cce8a88
commit
7d1e1e273a
1 changed files with 1 additions and 1 deletions
|
@ -288,7 +288,7 @@ class Module {
|
|||
// Relation for maps whose keys are strings shared with some other
|
||||
// structure.
|
||||
struct CompareStringPtrs {
|
||||
bool operator()(const string *x, const string *y) { return *x < *y; }
|
||||
bool operator()(const string *x, const string *y) const { return *x < *y; }
|
||||
};
|
||||
|
||||
// A map from filenames to File structures. The map's keys are
|
||||
|
|
Loading…
Reference in a new issue