From: Tan S. B. Date: Mon, 17 Dec 2018 19:53:22 +0000 (+0000) Subject: [NFC] Test commit: tweak whitespace in comment X-Git-Tag: llvmorg-8.0.0-rc1~1898 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=799b7165927363c40e297d6278a937920af89346;p=platform%2Fupstream%2Fllvm.git [NFC] Test commit: tweak whitespace in comment llvm-svn: 349384 --- diff --git a/clang/test/CXX/temp/temp.param/p3.cpp b/clang/test/CXX/temp/temp.param/p3.cpp index c3c9339..f709630 100644 --- a/clang/test/CXX/temp/temp.param/p3.cpp +++ b/clang/test/CXX/temp/temp.param/p3.cpp @@ -16,7 +16,7 @@ template class Y> struct X1 { // [Note: because of the name lookup rules, a template-parameter that // could be interpreted as either a non-type template-parameter or a // type-parameter (because its identifier is the name of an already -// existing class) is taken as a type-parameter. For example, +// existing class) is taken as a type-parameter. For example, class T { /* ... */ }; // expected-note{{candidate constructor (the implicit copy constructor) not viable}} #if __cplusplus >= 201103L // C++11 or later // expected-note@-2 {{candidate constructor (the implicit move constructor) not viable}} @@ -27,7 +27,7 @@ int i; template struct X2 { void f(T t) { - T t1 = i; //template-parameters T and i + T t1 = i; // template-parameters T and i ::T t2 = ::i; // global namespace members T and i \ // expected-error{{no viable conversion}} }