commit | f4b54fe64bd82f67c188003971b3a5e6b72c917f | [log] [tgz] |
---|---|---|
author | Richard Trieu <rtrieu@google.com> | Sat Mar 04 03:04:15 2017 +0000 |
committer | Richard Trieu <rtrieu@google.com> | Sat Mar 04 03:04:15 2017 +0000 |
tree | b0fd494555c39e97d816814df0c1b3b2931d8df0 | |
parent | f4313ebfef62c107ed6757bdc720609193f5e930 [diff] [blame] |
[ODRHash] Try again to fix build bot. llvm-svn: 296958
diff --git a/clang/test/Modules/odr_hash.cpp b/clang/test/Modules/odr_hash.cpp index 6c7e573..9063cd1 100644 --- a/clang/test/Modules/odr_hash.cpp +++ b/clang/test/Modules/odr_hash.cpp
@@ -312,12 +312,12 @@ #if defined(FIRST) struct S3 { static void A() {} - void B() {} + void A(int) {} }; #elif defined(SECOND) struct S3 { - void A() {} - static void B() {} + void A(int) {} + static void A() {} }; #else S3 s3;