Convert some tab stops into spaces.
[oota-llvm.git] / examples / Kaleidoscope / Chapter4 / toy.cpp
index c88a76f42297604b565f3fd065bac26c418b6d06..327c5c0591c00e169ac20009130c20d6cdc326d6 100644 (file)
@@ -407,7 +407,7 @@ Value *CallExprAST::Codegen() {
 
 Function *PrototypeAST::Codegen() {
   // Make the function type:  double(double,double) etc.
-       std::vector<const Type*> Doubles(Args.size(),
+  std::vector<const Type*> Doubles(Args.size(),
                                    Type::getDoubleTy(getGlobalContext()));
   FunctionType *FT = FunctionType::get(Type::getDoubleTy(getGlobalContext()),
                                        Doubles, false);