diff options
author | Kaelyn Uhrain <rikka@google.com> | 2012-04-19 23:26:12 +0000 |
---|---|---|
committer | Kaelyn Uhrain <rikka@google.com> | 2012-04-19 23:26:12 +0000 |
commit | d783617c259d9098e0384b950a8dbaf9e4f81839 (patch) | |
tree | aa0e44bc4ea14aecc2ccf0eb0910d71f2bcac1dd /clang/test/FixIt/fixit.cpp | |
parent | 32e62f1fd57e69a4c49cc15da85498dc9ae2501e (diff) | |
download | bcm5719-llvm-d783617c259d9098e0384b950a8dbaf9e4f81839.tar.gz bcm5719-llvm-d783617c259d9098e0384b950a8dbaf9e4f81839.zip |
Re-add the closing '}' for the namespace I accidentally deleted when
removing a (new) duplicate test whose only difference was the tag type
being an enum instead of a struct.
llvm-svn: 155165
Diffstat (limited to 'clang/test/FixIt/fixit.cpp')
-rw-r--r-- | clang/test/FixIt/fixit.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/test/FixIt/fixit.cpp b/clang/test/FixIt/fixit.cpp index afa71c6f3de..ac1fb6397f3 100644 --- a/clang/test/FixIt/fixit.cpp +++ b/clang/test/FixIt/fixit.cpp @@ -216,3 +216,4 @@ class Foo { Bar bar_; // expected-error {{must use 'enum' tag to refer to type 'Bar' in this scope}} }; void Foo::SetBar(Bar bar) { bar_ = bar; } // expected-error {{must use 'enum' tag to refer to type 'Bar' in this scope}} +} |