[Proto] Returns double

Dear all,
I am working in an application where I use Proto to evaluate an expression template like
_1 >> f >> g
to g(f(x)) once x is assigned to _1. (Please note that f and g are not necessarily functions -- they might be function objects too.) I am interested in putting a compile-time sanity check to ensure that the functions/function objects f and g do indeed return a double (or something convertible to it). For that, I wrote the following grammar which GCC 4.5.1 (Boost 1.42, MinGW32, WinXP, SP3) doesn't like, with the error messages being at the P.S. section:
struct EmtnRet2DblChk:
or_
<
terminal<_>,
and_
<
shift_right
participants (1)
-
Hossein Haeri