Why? The debug function does alter state, so making it const doesn't make much sense to me.
On 23 February 2015 at 15:02, Dirk Laurie <[email protected]> wrote: > Current: > > /// debug-print \b this value > void debug(const char * info); > > Suggested: > > /// debug-print \b this value under \b info > void debug(const char * info) const; > >
