diff options
author | Gabor Marton <gabor.marton@ericsson.com> | 2019-09-23 19:49:45 +0000 |
---|---|---|
committer | Gabor Marton <gabor.marton@ericsson.com> | 2019-09-23 19:49:45 +0000 |
commit | 174d43d123f59354378dffbbf8960a0cb79df25c (patch) | |
tree | d15272ea2e10c4c73ccc594f18bc2e042cf19b51 | |
parent | e3c2163ffe1b61be72a1741f2f01f2e0b13a47f6 (diff) | |
download | bcm5719-llvm-174d43d123f59354378dffbbf8960a0cb79df25c.tar.gz bcm5719-llvm-174d43d123f59354378dffbbf8960a0cb79df25c.zip |
[ASTImporter] 2nd attempt to fix Windows buildbot test errors
llvm-svn: 372646
-rw-r--r-- | clang/unittests/AST/ASTImporterODRStrategiesTest.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/unittests/AST/ASTImporterODRStrategiesTest.cpp b/clang/unittests/AST/ASTImporterODRStrategiesTest.cpp index 0c200952bdc..62368022a0c 100644 --- a/clang/unittests/AST/ASTImporterODRStrategiesTest.cpp +++ b/clang/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<Decl> getPattern() { return functionDecl(hasName("X"), unless(isImplicit())); |