diff options
Diffstat (limited to 'Source/cmPathLabel.h')
-rw-r--r-- | Source/cmPathLabel.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmPathLabel.h b/Source/cmPathLabel.h index 02d5261..39fbec3 100644 --- a/Source/cmPathLabel.h +++ b/Source/cmPathLabel.h @@ -28,8 +28,8 @@ public: // The comparison operators are only for quick sorting and searching and // in no way imply any lexicographical order of the label - bool operator < (const cmPathLabel& l) const; - bool operator == (const cmPathLabel& l) const; + bool operator<(const cmPathLabel& l) const; + bool operator==(const cmPathLabel& l) const; const std::string& GetLabel() const { return this->Label; } const unsigned int& GetHash() const { return this->Hash; } |