You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@qpid.apache.org by Alan Conway <ac...@redhat.com> on 2007/11/02 21:06:37 UTC

c++ style note: never put using statements in header files.

It's a no-no, since every compilation unit that includes your header is
forced to accept your choice of what's "convenient" which is not always
convenient.

Cheers,
Alan.