[ASTImporter] Attempt to fix Windows buildbot test errors
authorGabor Marton <gabor.marton@ericsson.com>
Mon, 23 Sep 2019 17:29:08 +0000 (17:29 +0000)
committerGabor Marton <gabor.marton@ericsson.com>
Mon, 23 Sep 2019 17:29:08 +0000 (17:29 +0000)
llvm-svn: 372633

clang/unittests/AST/ASTImporterODRStrategiesTest.cpp

index a009a57..0c20095 100644 (file)
@@ -30,9 +30,9 @@ using internal::BindableMatcher;
 
 struct Function {
   using DeclTy = FunctionDecl;
-  static constexpr auto *Prototype = "void X(int);";
+  static constexpr auto *Prototype = "void X(long);";
   static constexpr auto *ConflictingPrototype = "void X(double);";
-  static constexpr auto *Definition = "void X(int a) {}";
+  static constexpr auto *Definition = "void X(long a) {}";
   static constexpr auto *ConflictingDefinition = "void X(double a) {}";
   BindableMatcher<Decl> getPattern() {
     return functionDecl(hasName("X"), unless(isImplicit()));