Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cdt-dev] Extended API to add support for nullptr (C++11)

Hi,

I have added support for the null pointer constant (https://bugs.eclipse.org/bugs/show_bug.cgi?id=327298) . For that I have extended the API:

New keyword:

+        Keywords.NULLPTR

+        Keywords.cNULLPTR

+        IToken.t_nullptr

New literal _expression_:

+        IASTLiteralExpression. lk_nullptr

New Type:

+        IBasicType.Kind.eNullPtr

 

Markus.


Back to the top