From 90e328c27188af2f7b09b22bf243d77638bb824d Mon Sep 17 00:00:00 2001 From: Marshall Clow Date: Mon, 14 Dec 2015 18:11:51 +0000 Subject: [PATCH] K-Ballo pointed out a mistake in the add_lvalue_ref tests I checked in; now more of them are passing. Thanks git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@255519 91177308-0d34-0410-b5e6-96231b3b80d8 --- .../meta.trans.ref/add_lvalue_ref.pass.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/test/std/utilities/meta/meta.trans/meta.trans.ref/add_lvalue_ref.pass.cpp b/test/std/utilities/meta/meta.trans/meta.trans.ref/add_lvalue_ref.pass.cpp index 5886d982..fb53312c 100644 --- a/test/std/utilities/meta/meta.trans/meta.trans.ref/add_lvalue_ref.pass.cpp +++ b/test/std/utilities/meta/meta.trans/meta.trans.ref/add_lvalue_ref.pass.cpp @@ -52,8 +52,8 @@ int main() test_add_lvalue_reference(); test_add_lvalue_reference(); -// LWG 2101 specifically talks about add_lvalue_reference and functions. -// The term of art is "a referenceable type", which a cv- or ref-qualified function is not. +// LWG 2101 specifically talks about add_lvalue_reference and functions. +// The term of art is "a referenceable type", which a cv- or ref-qualified function is not. test_function0(); // test_function1(); // test_function1(); @@ -62,9 +62,9 @@ int main() // test_function1(); test_function0(); -// test_function1(); -// test_function1(); -// test_function1(); -// test_function1(); -// test_function1(); + test_function0(); + test_function0(); + test_function0(); + test_function0(); + test_function0(); }