From: Warren Young Date: March 17 2005 1:49am Subject: Re: Minor patch to null.h List-Archive: http://lists.mysql.com/plusplus/4155 Message-Id: <4238E216.4000703@etr-usa.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Steve Roberts wrote: > - template operator Type () {throw BadNullConversion();} > + template operator Type () {if (1) throw BadNullConversion();else return Type();} Ugh. Try this instead: template operator Type () { throw BadNullConversion(); return Type(); }