From afa123f28ec9cad01dafbf4578b71e4fe48e3412 Mon Sep 17 00:00:00 2001 From: Lorenzo Caminiti Date: Wed, 4 Apr 2012 21:15:16 +0000 Subject: [PATCH] Added a temporary workaround the Boost.Config bug that causes Boost.Typeof to fail on Sun (Jamfile __typeof__=__typeof__ so Boost.Config does not define __typeof__ to be typeof). [SVN r77770] --- overloaded_function/test/Jamfile.v2 | 3 +++ 1 file changed, 3 insertions(+) diff --git a/overloaded_function/test/Jamfile.v2 b/overloaded_function/test/Jamfile.v2 index 6b4c0b0..079b116 100644 --- a/overloaded_function/test/Jamfile.v2 +++ b/overloaded_function/test/Jamfile.v2 @@ -7,6 +7,9 @@ import testing ; +# Workaround a Boost.Config bug that causes Boost.Typeof to fail on Sun. +project : requirements sun:__typeof__=__typeof__ ; + run functor.cpp ; run make_decl.cpp ; run make_call.cpp ;