21 Sep
2009
21 Sep
'09
1:46 p.m.
On Mon, Sep 21, 2009 at 03:36:21PM +0200, Marcus Meissner wrote:
On Mon, Sep 21, 2009 at 01:50:51PM +0100, Huw Davies wrote:
+ if(src_type & DBTYPE_VECTOR || dst_type & DBTYPE_VECTOR) return S_FALSE;
I think this needs brackets...
Why? It's equivalent to: if((src_type & DBTYPE_VECTOR) || (dst_type & DBTYPE_VECTOR)) return S_FALSE; which is what I want. Huw.