From cec8bf321a5bd72c3165ad16b6036d5bcbe40c08 Mon Sep 17 00:00:00 2001 From: Eric Christopher Date: Fri, 28 Feb 2014 21:37:28 +0000 Subject: [PATCH] Fix >> to be > > for non-c++11. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@202545 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/IR/DIBuilder.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/IR/DIBuilder.cpp b/lib/IR/DIBuilder.cpp index f5b7d3542b6..d15de61479f 100644 --- a/lib/IR/DIBuilder.cpp +++ b/lib/IR/DIBuilder.cpp @@ -148,7 +148,7 @@ DICompileUnit DIBuilder::createCompileUnit(unsigned Lang, StringRef Filename, static DIImportedEntity createImportedModule(LLVMContext &C, DIScope Context, DIDescriptor NS, unsigned Line, StringRef Name, - SmallVectorImpl> &AllImportedModules) { + SmallVectorImpl > &AllImportedModules) { const MDNode *R; if (Name.empty()) { Value *Elts[] = { -- 2.34.1