Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
Diffstat (limited to 'core')
-rw-r--r--core/org.eclipse.cdt.core/src/org/eclipse/cdt/core/formatter/DefaultCodeFormatterOptions.java9
1 files changed, 9 insertions, 0 deletions
diff --git a/core/org.eclipse.cdt.core/src/org/eclipse/cdt/core/formatter/DefaultCodeFormatterOptions.java b/core/org.eclipse.cdt.core/src/org/eclipse/cdt/core/formatter/DefaultCodeFormatterOptions.java
index 4a0cd58b204..b6f77b62e32 100644
--- a/core/org.eclipse.cdt.core/src/org/eclipse/cdt/core/formatter/DefaultCodeFormatterOptions.java
+++ b/core/org.eclipse.cdt.core/src/org/eclipse/cdt/core/formatter/DefaultCodeFormatterOptions.java
@@ -79,6 +79,9 @@ public class DefaultCodeFormatterOptions {
public int alignment_for_parameters_in_method_declaration;
public int alignment_for_throws_clause_in_method_declaration;
public int alignment_for_constructor_initializer_list;
+ /**
+ * @since 6.8
+ */
public int alignment_for_lambda_expression;
// public boolean align_type_members_on_columns;
@@ -205,7 +208,13 @@ public class DefaultCodeFormatterOptions {
public boolean insert_space_after_question_in_conditional;
public boolean insert_space_after_semicolon_in_for;
public boolean insert_space_after_unary_operator;
+ /**
+ * @since 6.8
+ */
public boolean insert_space_after_lambda_return;
+ /**
+ * @since 6.8
+ */
public boolean insert_space_before_lambda_return;
public boolean insert_space_before_assignment_operator;
public boolean insert_space_before_binary_operator;

Back to the top