diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2013-01-26 01:35:28 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2013-01-26 01:35:28 +0000 |
commit | a9cd3d8452a253adf296d327a53e7009a2b01594 (patch) | |
tree | 353954f136ac34daec73f4a5bbddecacf0434263 | |
parent | 7ba443aa8cfb222737d3a964a19ad4fb1328c4b5 (diff) |
Hopefuly unbreak buldbot.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@173549 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Index/annotate-comments-typedef.m | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/Index/annotate-comments-typedef.m b/test/Index/annotate-comments-typedef.m index 2d73d123f2..6e5fb73520 100644 --- a/test/Index/annotate-comments-typedef.m +++ b/test/Index/annotate-comments-typedef.m @@ -22,9 +22,9 @@ typedef enum : NSUInteger { /** Documentation for E */ enum E { - MyEnumFoo, /**< value Foo */ - MyEnumBar, /**< value Bar */ - MyEnumBaz, /**< value Baz */ + E_MyEnumFoo, /**< value Foo */ + E_MyEnumBar, /**< value Bar */ + E_MyEnumBaz, /**< value Baz */ }; typedef enum E E_T; // CHECK: TypedefDecl=E_T:[[@LINE-1]]:16 (Definition) FullCommentAsHTML=[<p class="para-brief"> Documentation for E </p>] FullCommentAsXML=[<Typedef file="{{[^"]+}}annotate-comments-typedef.m" line="[[@LINE-1]]" column="16"><Name>E</Name><USR>c:@E@E</USR><Declaration>typedef enum E E_T</Declaration><Abstract><Para> Documentation for E </Para></Abstract></Typedef>] |