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. [http://git.eclipse.org/c/cdt/org.eclipse.cdt.git/commit/?id=241a60fe8a522a0b39586ec5ec93c67a77f2898d link]
 
*When code completion is invoked in a function call expression, appropriate substitutions are suggested for each of the function parameters. [http://git.eclipse.org/c/cdt/org.eclipse.cdt.git/commit/?id=241a60fe8a522a0b39586ec5ec93c67a77f2898d link]
  
 
[[File:Function_call.png]]
 
[[File:Function_call.png]]
 +
-->
  
 
== Parser ==
 
== Parser ==

Revision as of 10:55, 11 December 2015

General

Editor

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