From: Gabor Marton Date: Mon, 23 Sep 2019 19:49:45 +0000 (+0000) Subject: [ASTImporter] 2nd attempt to fix Windows buildbot test errors X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=470b851dcd360959d4d345b6a4604b91a5a38f59;p=clang [ASTImporter] 2nd attempt to fix Windows buildbot test errors git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@372646 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/unittests/AST/ASTImporterODRStrategiesTest.cpp b/unittests/AST/ASTImporterODRStrategiesTest.cpp index 0c200952bd..62368022a0 100644 --- a/unittests/AST/ASTImporterODRStrategiesTest.cpp +++ b/unittests/AST/ASTImporterODRStrategiesTest.cpp @@ -30,9 +30,9 @@ using internal::BindableMatcher; struct Function { using DeclTy = FunctionDecl; - static constexpr auto *Prototype = "void X(long);"; + static constexpr auto *Prototype = "void X(char*, char);"; static constexpr auto *ConflictingPrototype = "void X(double);"; - static constexpr auto *Definition = "void X(long a) {}"; + static constexpr auto *Definition = "void X(char *a, char b) {}"; static constexpr auto *ConflictingDefinition = "void X(double a) {}"; BindableMatcher getPattern() { return functionDecl(hasName("X"), unless(isImplicit()));