From 82820de89d4b8c6df91c452704b0754bac287521 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Sun, 27 Jun 2021 03:59:51 +0300 Subject: [PATCH] Fix typo in test/lookup_problem.cpp --- test/lookup_problem.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/lookup_problem.cpp b/test/lookup_problem.cpp index 0534f00..0bafc41 100644 --- a/test/lookup_problem.cpp +++ b/test/lookup_problem.cpp @@ -19,6 +19,6 @@ namespace N int main() { - BOOST_TEST_EQ( plus_one( 4 ), 5 ); + BOOST_TEST_EQ( N::plus_one( 4 ), 5 ); return boost::report_errors(); }