mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Cosmetics.
This commit is contained in:
parent
74d3d47147
commit
f0ded0383c
1 changed files with 3 additions and 3 deletions
|
@ -69,12 +69,12 @@ public class CPPASTTranslationUnit extends ASTTranslationUnit implements ICPPAST
|
||||||
private void addBuiltinOperators(CPPScope theScope) {
|
private void addBuiltinOperators(CPPScope theScope) {
|
||||||
// void
|
// void
|
||||||
IType cpp_void = new CPPBasicType(Kind.eVoid, 0);
|
IType cpp_void = new CPPBasicType(Kind.eVoid, 0);
|
||||||
// void *
|
// void*
|
||||||
IType cpp_void_p = new CPPPointerType(new CPPQualifierType(new CPPBasicType(Kind.eVoid, 0), false, false), new CPPASTPointer());
|
IType cpp_void_p = new CPPPointerType(new CPPQualifierType(new CPPBasicType(Kind.eVoid, 0), false, false), new CPPASTPointer());
|
||||||
// size_t // assumed: unsigned long int
|
// size_t // assumed: unsigned long int
|
||||||
IType cpp_size_t = new CPPBasicType(Kind.eInt, IBasicType.IS_LONG & IBasicType.IS_UNSIGNED);
|
IType cpp_size_t = new CPPBasicType(Kind.eInt, IBasicType.IS_LONG & IBasicType.IS_UNSIGNED);
|
||||||
|
|
||||||
// void * operator new (std::size_t);
|
// void* operator new(std::size_t);
|
||||||
IBinding temp = null;
|
IBinding temp = null;
|
||||||
IType[] newParms = new IType[1];
|
IType[] newParms = new IType[1];
|
||||||
newParms[0] = cpp_size_t;
|
newParms[0] = cpp_size_t;
|
||||||
|
@ -84,7 +84,7 @@ public class CPPASTTranslationUnit extends ASTTranslationUnit implements ICPPAST
|
||||||
temp = new CPPImplicitFunction(OverloadableOperator.NEW.toCharArray(), theScope, newFunctionType, newTheParms, false);
|
temp = new CPPImplicitFunction(OverloadableOperator.NEW.toCharArray(), theScope, newFunctionType, newTheParms, false);
|
||||||
theScope.addBinding(temp);
|
theScope.addBinding(temp);
|
||||||
|
|
||||||
// void * operator new[] (std::size_t);
|
// void* operator new[](std::size_t);
|
||||||
temp = null;
|
temp = null;
|
||||||
temp = new CPPImplicitFunction(OverloadableOperator.NEW_ARRAY.toCharArray(), theScope, newFunctionType, newTheParms, false);
|
temp = new CPPImplicitFunction(OverloadableOperator.NEW_ARRAY.toCharArray(), theScope, newFunctionType, newTheParms, false);
|
||||||
theScope.addBinding(temp);
|
theScope.addBinding(temp);
|
||||||
|
|
Loading…
Add table
Reference in a new issue