Hi,
I am getting link error messages on the following function. VC7.
Any ideas ?
Thanks in Advance.
Rich.
template<class T>
bool ExistsInList(T Value, T Expr, ...)
{
// NOTE: list terminates with -1
va_list Argp;
T chk = Expr;
va_start(Argp,Expr);
while (chk != Value)
if (-1 ==...