Remove extra whitespace at EOL
authorChris Lattner <sabre@nondot.org>
Fri, 7 Sep 2001 16:24:35 +0000 (16:24 +0000)
committerChris Lattner <sabre@nondot.org>
Fri, 7 Sep 2001 16:24:35 +0000 (16:24 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@427 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/User.h

index 7cc4cfb036d6efba277ba66a2a22967541132fc9..d914b1fc1d8592fe54e5cef28140e1206e1163bf 100644 (file)
@@ -25,11 +25,11 @@ public:
 
   inline Value *getOperand(unsigned i) { 
     assert(i < Operands.size() && "getOperand() out of range!");
-    return Operands[i]; 
+    return Operands[i];
   }
   inline const Value *getOperand(unsigned i) const {
     assert(i < Operands.size() && "getOperand() const out of range!");
-    return Operands[i]; 
+    return Operands[i];
   }
   inline void setOperand(unsigned i, Value *Val) {
     assert(i < Operands.size() && "setOperand() out of range!");