From: Warren Young Date: May 2 2005 4:22pm Subject: Re: Small patch List-Archive: http://lists.mysql.com/plusplus/4334 Message-Id: <427653B1.7030006@etr-usa.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Erwin wrote: > I've found a small buglet in coldata.h, the type() method should be > const, Applied. Thanks. In future, you don't need to justify this type of patch. If a method clearly doesn't modify the contents of the class's internals, it should be const, no question. Unless it's overridden by a subclass method that does modify things, I suppose...