diff options
Diffstat (limited to 'Source/cmPathLabel.cxx')
-rw-r--r-- | Source/cmPathLabel.cxx | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Source/cmPathLabel.cxx b/Source/cmPathLabel.cxx index 67d56e1..f3b0864 100644 --- a/Source/cmPathLabel.cxx +++ b/Source/cmPathLabel.cxx @@ -12,7 +12,6 @@ #include "cmPathLabel.h" -//---------------------------------------------------------------------------- cmPathLabel::cmPathLabel(const std::string& label) : Label(label), Hash(0) { @@ -28,13 +27,11 @@ cmPathLabel::cmPathLabel(const std::string& label) this->Hash += ((this->Hash & 0x0001FFFF) << 15); } -//---------------------------------------------------------------------------- bool cmPathLabel::operator < (const cmPathLabel& l) const { return this->Hash < l.Hash; } -//---------------------------------------------------------------------------- bool cmPathLabel::operator == (const cmPathLabel& l) const { return this->Hash == l.Hash; |