diff options
author | Richard Trieu <rtrieu@google.com> | 2015-05-16 01:39:39 +0000 |
---|---|---|
committer | Richard Trieu <rtrieu@google.com> | 2015-05-16 01:39:39 +0000 |
commit | d3967635bc0442aba6eed8c99c8d8561fe8091dd (patch) | |
tree | b85b7c2662ba4f22b4d49ae82180b577501f7480 /clang/test/Misc/diag-template-diffing.cpp | |
parent | f8fa3b8d4bf52469849cce574134c903ea58ed7d (diff) | |
download | bcm5719-llvm-d3967635bc0442aba6eed8c99c8d8561fe8091dd.tar.gz bcm5719-llvm-d3967635bc0442aba6eed8c99c8d8561fe8091dd.zip |
Fix typo from r237482. "to reference of type" --> "to reference to type"
llvm-svn: 237507
Diffstat (limited to 'clang/test/Misc/diag-template-diffing.cpp')
-rw-r--r-- | clang/test/Misc/diag-template-diffing.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/Misc/diag-template-diffing.cpp b/clang/test/Misc/diag-template-diffing.cpp index f345535ea1c..044f07ba06b 100644 --- a/clang/test/Misc/diag-template-diffing.cpp +++ b/clang/test/Misc/diag-template-diffing.cpp @@ -1258,7 +1258,7 @@ using T = condition<(is_const())>; void foo(const T &t) { T &t2 = t; } -// CHECK-ELIDE-NOTREE: binding value of type 'const condition<[...]>' to reference of type 'condition<[...]>' drops 'const' qualifier +// CHECK-ELIDE-NOTREE: binding value of type 'const condition<[...]>' to reference to type 'condition<[...]>' drops 'const' qualifier } namespace BoolArgumentBitExtended { |