From 2a53577728948052b8508760406b6ba68e55fc82 Mon Sep 17 00:00:00 2001 From: NAKAMURA Takumi Date: Sun, 22 Jan 2012 12:14:35 +0000 Subject: [PATCH] unittests/Support/Casting.cpp: [PR8226] Workaround for MSVC|Debug. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@148659 91177308-0d34-0410-b5e6-96231b3b80d8 --- unittests/Support/Casting.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/unittests/Support/Casting.cpp b/unittests/Support/Casting.cpp index ae84693bd63..ca0b40b1f55 100644 --- a/unittests/Support/Casting.cpp +++ b/unittests/Support/Casting.cpp @@ -69,7 +69,9 @@ namespace { const foo *null_foo = NULL; +bar B; extern bar &B1; +bar &B1 = B; extern const bar *B2; // test various configurations of const const bar &B3 = B1; @@ -145,9 +147,6 @@ TEST(CastingTest, dyn_cast_or_null) { //foo &F23 = cast_or_null(B1); //const foo &F24 = cast_or_null(B3); - -bar B; -bar &B1 = B; const bar *B2 = &B; } // anonymous namespace -- 2.34.1