diff --git a/llvm/examples/Kaleidoscope/Chapter2/toy.cpp b/llvm/examples/Kaleidoscope/Chapter2/toy.cpp --- a/llvm/examples/Kaleidoscope/Chapter2/toy.cpp +++ b/llvm/examples/Kaleidoscope/Chapter2/toy.cpp @@ -1,11 +1,10 @@ -#include "llvm/ADT/STLExtras.h" -#include #include #include #include #include #include #include +#include #include //===----------------------------------------------------------------------===// @@ -300,8 +299,8 @@ } // Merge LHS/RHS. - LHS = std::make_unique(BinOp, std::move(LHS), - std::move(RHS)); + LHS = + std::make_unique(BinOp, std::move(LHS), std::move(RHS)); } } @@ -357,7 +356,7 @@ if (auto E = ParseExpression()) { // Make an anonymous proto. auto Proto = std::make_unique("__anon_expr", - std::vector()); + std::vector()); return std::make_unique(std::move(Proto), std::move(E)); } return nullptr;