On Wed, Feb 27, 2008 at 11:19:31PM +0100, Uwe Stöhr wrote:
> Andre Poenitz schrieb:
>
>>> +#include <map>
>>> +
>>> +#include "MathParser.h"
>>> +
>>>  #include "support/docstring.h"
>>>  #include <string>
>> System headers last.
>
> So you want?:
>
> #include "support/docstring.h"
> #include <map>
> #include <string>

Yes, and we usually have an empty line between our and system headers.

>>> +using std::map;
>>> +
>> No using on file scope in header files.
>
> What do you mean?

No 'using <whatever>;' in header files ...

Fully qualify in headers.

Andre'

Reply via email to