Skip to content
This repository was archived by the owner on Feb 5, 2019. It is now read-only.

Commit 4d0cdca

Browse files
committed
Fix the build broken in r177239
Seems some accidental C++11 crept in there. Reported by the C++98 buildbots. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@177241 91177308-0d34-0410-b5e6-96231b3b80d8
1 parent 64d667b commit 4d0cdca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/IR/DIBuilder.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ void DIBuilder::createCompileUnit(unsigned Lang, StringRef Filename,
117117
/// for a file.
118118
DIFile DIBuilder::createFile(StringRef Filename, StringRef Directory) {
119119
assert(!Filename.empty() && "Unable to create file without name");
120-
Value *Pair[] {
120+
Value *Pair[] = {
121121
MDString::get(VMContext, Filename),
122122
MDString::get(VMContext, Directory),
123123
};

0 commit comments

Comments
 (0)