From: Richard Trieu Date: Sat, 4 Mar 2017 03:04:15 +0000 (+0000) Subject: [ODRHash] Try again to fix build bot. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2a2d4663e26ea46e348f21d7517191ed163d6bd5;p=clang [ODRHash] Try again to fix build bot. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@296958 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Modules/odr_hash.cpp b/test/Modules/odr_hash.cpp index 6c7e5736c3..9063cd1ea7 100644 --- a/test/Modules/odr_hash.cpp +++ b/test/Modules/odr_hash.cpp @@ -312,12 +312,12 @@ S2 s2; #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;