diff options
Diffstat (limited to 'include/clang/Index/STLExtras.h')
-rw-r--r-- | include/clang/Index/STLExtras.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/clang/Index/STLExtras.h b/include/clang/Index/STLExtras.h index a9707204c5..a3693c6c79 100644 --- a/include/clang/Index/STLExtras.h +++ b/include/clang/Index/STLExtras.h @@ -48,16 +48,16 @@ public: return tmp; } - friend bool operator==(pair_value_iterator L, pair_value_iterator R) { + friend bool operator==(pair_value_iterator L, pair_value_iterator R) { return L.I == R.I; } - friend bool operator!=(pair_value_iterator L, pair_value_iterator R) { + friend bool operator!=(pair_value_iterator L, pair_value_iterator R) { return L.I != R.I; } }; } // end idx namespace - + } // end clang namespace #endif |