diff options
author | Nick Lewycky <nicholas@mxc.ca> | 2012-12-25 06:13:25 +0000 |
---|---|---|
committer | Nick Lewycky <nicholas@mxc.ca> | 2012-12-25 06:13:25 +0000 |
commit | d192517cf3309a0d6768105147ed4292fc71881b (patch) | |
tree | 2ffd6ef62c3bb04dc9ff22a4ad23666a48b41788 /llvm/lib/Support/FoldingSet.cpp | |
parent | eb63feb5bd73df342c98fa3d32f54615ea44e4ae (diff) | |
download | bcm5719-llvm-d192517cf3309a0d6768105147ed4292fc71881b.tar.gz bcm5719-llvm-d192517cf3309a0d6768105147ed4292fc71881b.zip |
Fix whitespace. No functionality change.
llvm-svn: 171051
Diffstat (limited to 'llvm/lib/Support/FoldingSet.cpp')
-rw-r--r-- | llvm/lib/Support/FoldingSet.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Support/FoldingSet.cpp b/llvm/lib/Support/FoldingSet.cpp index 9c44c9348ba..36e33b5aafa 100644 --- a/llvm/lib/Support/FoldingSet.cpp +++ b/llvm/lib/Support/FoldingSet.cpp @@ -148,7 +148,7 @@ unsigned FoldingSetNodeID::ComputeHash() const { /// operator== - Used to compare two nodes to each other. /// -bool FoldingSetNodeID::operator==(const FoldingSetNodeID &RHS)const{ +bool FoldingSetNodeID::operator==(const FoldingSetNodeID &RHS) const { return *this == FoldingSetNodeIDRef(RHS.Bits.data(), RHS.Bits.size()); } @@ -160,7 +160,7 @@ bool FoldingSetNodeID::operator==(FoldingSetNodeIDRef RHS) const { /// Used to compare the "ordering" of two nodes as defined by the /// profiled bits and their ordering defined by memcmp(). -bool FoldingSetNodeID::operator<(const FoldingSetNodeID &RHS)const{ +bool FoldingSetNodeID::operator<(const FoldingSetNodeID &RHS) const { return *this < FoldingSetNodeIDRef(RHS.Bits.data(), RHS.Bits.size()); } |