1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-23 17:05:26 +02:00

Bug 412380 Documentation for "Skip trivial initializer" flag.

Replaced the screenshot and added a short description of the new
options.

Change-Id: Iab2be3bb769079fac8cad70d16d37797d4a57100
Reviewed-on: https://git.eclipse.org/r/16838
Reviewed-by: Thomas Corbat <tcorbat@hsr.ch>
IP-Clean: Thomas Corbat <tcorbat@hsr.ch>
Tested-by: Thomas Corbat <tcorbat@hsr.ch>
This commit is contained in:
Thomas Corbat 2013-09-27 15:04:37 +02:00
parent b40866ce32
commit c92d135f6d
2 changed files with 11 additions and 0 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 46 KiB

After

Width:  |  Height:  |  Size: 62 KiB

View file

@ -63,6 +63,17 @@
<td headers="option"><strong>Disable content assist auto-activation</strong></td> <td headers="option"><strong>Disable content assist auto-activation</strong></td>
<td headers="description">If enabled, content assist will not be activated automatically on trigger sequences, like '.', '::' or '->'.</td> <td headers="description">If enabled, content assist will not be activated automatically on trigger sequences, like '.', '::' or '->'.</td>
</tr> </tr>
<tr>
<td headers="option"><strong>Skip trivial expressions in initializer lists</strong></td>
<td headers="description">If enabled, trivial initializers in initializer lists are skipped while parsing.
This improves parsing and indexing performance when very large initializer lists are present.</td>
</tr>
<tr>
<td headers="option"><strong>Maximum number of trivial expressions in initializer lists to parse</strong></td>
<td headers="description">Specifies the maximum number of trivial initializers in initializer lists to parse.
Any trivial initializer-clauses beyond that number are skipped.
This option is only available if <i>Skip trivial expressions in initializer lists</i> is enabled.</td>
</tr>
</tbody> </tbody>
</table> </table>