From: Bj|rn A. <d3a...@dt...> - 2002-01-22 03:58:13
|
Hi! Here's a new version of the debug printing patch. I've indented it to match the existing code betteri, mostly. The patch also adds a little details to error messages, and fixes one that was plain wrong. It's against Johann's input-only patch to 2.4.17, but it should patch cleanly against the 2.5 tree, I think. /August. -- Wrong on most accounts. const Foo *foo; and Foo const *foo; mean the same: foo being a pointer to const Foo. const Foo const *foo; would mean the same but is illegal (double const). You are confusing this with Foo * const foo; and const Foo * const foo; respectively. -David Kastrup, comp.os.linux.development.system |