diff options
author | Roberto Raggi <[email protected]> | 2008-12-22 11:40:53 +0100 |
---|---|---|
committer | Roberto Raggi <[email protected]> | 2008-12-22 11:40:53 +0100 |
commit | 753ddb7ce076a12df07b2f800fe785cf659277df (patch) | |
tree | 74797fcd46919bed253d9fbbc85c67be18702d51 /src/libs/cplusplus/pp.h | |
parent | d8336257cb1da778ab74f1edce68f855dd862242 (diff) |
Some cleanup in the C++ preprocessor.
Introduced pp-scanner.cpp, renamed `pp' to `Preprocessor' and removed useless #includes.
Diffstat (limited to 'src/libs/cplusplus/pp.h')
-rw-r--r-- | src/libs/cplusplus/pp.h | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/src/libs/cplusplus/pp.h b/src/libs/cplusplus/pp.h index 2dee3e87f1d..2cf40eed096 100644 --- a/src/libs/cplusplus/pp.h +++ b/src/libs/cplusplus/pp.h @@ -50,15 +50,9 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ -#ifndef PP_H -#define PP_H +#ifndef CPLUSPLUS_PREPROCESSOR_H +#define CPLUSPLUS_PREPROCESSOR_H -#include <cassert> -#include <cstring> -#include <cctype> - -#include "pp-cctype.h" -#include "pp-internal.h" #include "pp-macro.h" #include "pp-environment.h" #include "pp-scanner.h" @@ -66,4 +60,4 @@ #include "pp-engine.h" #include "pp-client.h" -#endif // PP_H +#endif // CPLUSPLUS_PREPROCESSOR_H |