From 3472766f9eb7d66f234c390ce1b3a8b76f0ee9ce Mon Sep 17 00:00:00 2001 From: Duncan Sands Date: Mon, 12 Jul 2010 08:16:59 +0000 Subject: Convert some tab stops into spaces. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108130 91177308-0d34-0410-b5e6-96231b3b80d8 --- examples/Kaleidoscope/Chapter6/toy.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'examples/Kaleidoscope/Chapter6/toy.cpp') diff --git a/examples/Kaleidoscope/Chapter6/toy.cpp b/examples/Kaleidoscope/Chapter6/toy.cpp index 98a097cc47..b7b8738f58 100644 --- a/examples/Kaleidoscope/Chapter6/toy.cpp +++ b/examples/Kaleidoscope/Chapter6/toy.cpp @@ -756,7 +756,7 @@ Value *ForExprAST::Codegen() { Function *PrototypeAST::Codegen() { // Make the function type: double(double,double) etc. - std::vector Doubles(Args.size(), + std::vector Doubles(Args.size(), Type::getDoubleTy(getGlobalContext())); FunctionType *FT = FunctionType::get(Type::getDoubleTy(getGlobalContext()), Doubles, false); -- cgit v1.2.3