projects
/
platform
/
upstream
/
llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c9591e9
)
Missing comma in a string array initialization (CID 1254893)
author
Sylvestre Ledru
<sylvestre@debian.org>
Mon, 17 Nov 2014 19:41:49 +0000
(19:41 +0000)
committer
Sylvestre Ledru
<sylvestre@debian.org>
Mon, 17 Nov 2014 19:41:49 +0000
(19:41 +0000)
Summary:
We have this error from a while (Wed Jun 15 18:02:42 2011
r133103)
Reviewers: rsmith
Reviewed By: rsmith
Differential Revision: http://reviews.llvm.org/D6296
llvm-svn: 222169
clang/lib/Sema/SemaOverload.cpp
patch
|
blob
|
history
diff --git
a/clang/lib/Sema/SemaOverload.cpp
b/clang/lib/Sema/SemaOverload.cpp
index
e3355e7
..
1fa4923
100644
(file)
--- a/
clang/lib/Sema/SemaOverload.cpp
+++ b/
clang/lib/Sema/SemaOverload.cpp
@@
-161,7
+161,7
@@
static const char* GetImplicitConversionName(ImplicitConversionKind Kind) {
"Vector splat",
"Complex-real conversion",
"Block Pointer conversion",
- "Transparent Union Conversion"
+ "Transparent Union Conversion"
,
"Writeback conversion"
};
return Name[Kind];