From aa65e3da3bfb98e44153034b9d9089bcc1d334d3 Mon Sep 17 00:00:00 2001 From: Toon Knapen Date: Mon, 25 Nov 2002 15:54:37 +0000 Subject: [PATCH] sort_by_value(std::list& l) is not declared inline anymore to make it compile with vacpp [SVN r16407] --- binary_search_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/binary_search_test.cpp b/binary_search_test.cpp index abcdc46..cef289c 100644 --- a/binary_search_test.cpp +++ b/binary_search_test.cpp @@ -120,7 +120,7 @@ void random_sorted_sequence(std::list& result) } #else template <> -inline void sort_by_value(std::list& l) +void sort_by_value(std::list& l) { l.sort(cmp()); }