$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: Hicham Mouline (hicham_at_[hidden])
Date: 2008-02-29 08:23:54
hi,
I would like to avoid template instantiations with ContractType whose static functions st1 and st2 return an enum...
template <typename ContractType>
class C {
BOOST_STATIC_ASSERT( !(ContractType::st1()==A && ContractType::st2()==P) );
...
};
Is there a way to make this work?