Re: semantic-ia-fast-jump 'switches' from gcc headers to local headers
David Engster <[email protected]> Fri, 24 Oct 2014 22:38:32 +0200
| Newsgroups | gmane.emacs.semantic |
|---|---|
| Message-ID | <[email protected]> |
Xaver Gerster writes: > I think that 'using namespace std;' statements are all in proper places. > A caricature of the structure of the code would be: > > -------------------- > // file utility.h > #include <vector> > using namespace std; 'using' statements in headers are not supported. That being said, it is considered to be a bad practice anyway, and I've never seen it in the wild. -David ------------------------------------------------------------------------------