From: SourceForge.net <no...@so...> - 2004-04-20 09:59:11
|
Bugs item #938458, was opened at 2004-04-20 11:59 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=107869&aid=938458&group_id=7869 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Philipp Berndt (pberndt) Assigned to: Nobody/Anonymous (nobody) Summary: ColData::is_null() modifies object Initial Comment: In Version 1.9.3: A method starting with "is" is commonly expected to be an accessor for a boolean member, that is to be const and return bool. Instead in ColData.h: void is_null() { m_bNull = true; } Maybe this method with the funky name does what one would expect from ColData::is_null(): inline const bool ism_bNull() const { return m_bNull; } ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=107869&aid=938458&group_id=7869 |