From f73b5362c5a662a1d79b1bd63bab75faf1fb3889 Mon Sep 17 00:00:00 2001 From: Kohei Takahashi Date: Sat, 1 Nov 2014 16:53:37 +0900 Subject: [PATCH] Fix test error with C++03 mode, due to C++11 using-declaration. --- test/algorithm/fold.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/algorithm/fold.cpp b/test/algorithm/fold.cpp index 2df01adf..510c845d 100644 --- a/test/algorithm/fold.cpp +++ b/test/algorithm/fold.cpp @@ -132,7 +132,7 @@ struct functor struct visitor { - using result_type = int; + typedef int result_type; int operator()(int sum, long&) {