Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "CDT/User/NewIn90"

< CDT
(Editor)
(Editor)
Line 2: Line 2:
  
 
== Editor ==
 
== Editor ==
When code completion is invoked in a function call expression, appropriate substitutions are suggested for each of the function parameters.
+
*When code completion is invoked in a function call expression, appropriate substitutions are suggested for each of the function parameters.
  
 
[[File:Function_call.png]]
 
[[File:Function_call.png]]

Revision as of 07:16, 6 December 2015

General

Editor

  • When code completion is invoked in a function call expression, appropriate substitutions are suggested for each of the function parameters.

Function call.png

Parser

Build

  • The "Symbols" settings category (gnu.c.compiler.category.symbols) under "GCC C compiler" has been removed and its content has been merged with the Preprocessor (gnu.c.compiler.category.preprocessor) category. link

Debug

Bugs Fixed in this Release

See Bugzilla report Bugs Fixed in CDT 9.0

API modifications

With CDT 9.0, some public API are being modified. Below is the list of changes that are not backwards-compatible that extenders could trip on.

org.eclipse.cdt.dsf.gdb

  1. The deprecated protected method GdbLaunchDelegate.newServiceFactory(String) has been removed. It has been replaced with GdbLaunchDelegate.newServiceFactory(ILaunchConfiguration, String)

Back to the top