diff options
author | Eric Christopher <echristo@gmail.com> | 2015-04-02 22:10:06 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2015-04-02 22:10:06 +0000 |
commit | 6e11073b3ecfcfcbb8d099cafa26e0182fb61e34 (patch) | |
tree | e5e5f263dbb6f84040a5672b8c9a5db4d4196d73 /clang/test/FixIt/fixit.cpp | |
parent | 85368fb32dd68a9ad7db9f5632daf7fafe861420 (diff) | |
download | bcm5719-llvm-6e11073b3ecfcfcbb8d099cafa26e0182fb61e34.tar.gz bcm5719-llvm-6e11073b3ecfcfcbb8d099cafa26e0182fb61e34.zip |
Unify warnings/errors from "maybe you meant" to "did you mean".
llvm-svn: 233981
Diffstat (limited to 'clang/test/FixIt/fixit.cpp')
-rw-r--r-- | clang/test/FixIt/fixit.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/FixIt/fixit.cpp b/clang/test/FixIt/fixit.cpp index 585c216f90d..6c2fb7faf14 100644 --- a/clang/test/FixIt/fixit.cpp +++ b/clang/test/FixIt/fixit.cpp @@ -344,7 +344,7 @@ namespace PR15045 { int f() { Cl0 c; - return c->a; // expected-error {{member reference type 'PR15045::Cl0' is not a pointer; maybe you meant to use '.'?}} + return c->a; // expected-error {{member reference type 'PR15045::Cl0' is not a pointer; did you mean to use '.'?}} } } |