Convert some tab stops into spaces.
[oota-llvm.git] / examples / Kaleidoscope / Chapter6 / toy.cpp
index 98a097cc47d3f626556ffced85a483eedacea2d2..b7b8738f587ddafc205ed9a6c5e72aa3a3a39be8 100644 (file)
@@ -756,7 +756,7 @@ Value *ForExprAST::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);