Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Eames2015-01-23 02:10:37 +0000
committerSergey Prigogin2015-07-07 04:38:55 +0000
commit795c418f1079c4d78cc78e26880181fa6c8f5ed7 (patch)
treea465a8f927a74bd011f7aebc8b21b717f9b4fd96 /lrparser/org.eclipse.cdt.core.lrparser
parentb49fa6788297f923b097121d0894de3e80cefaf8 (diff)
downloadorg.eclipse.cdt-795c418f1079c4d78cc78e26880181fa6c8f5ed7.tar.gz
org.eclipse.cdt-795c418f1079c4d78cc78e26880181fa6c8f5ed7.tar.xz
org.eclipse.cdt-795c418f1079c4d78cc78e26880181fa6c8f5ed7.zip
Bug 379684 Support for User Defined Literals
This patch adds preliminary support for C++11 user defined literals: * Syntax support * Type deduction in expressions * Template literal operators * String literal concatenation Change-Id: I8a9760036a2c8428295f0e1ffb4b519a0a2577c9 Signed-off-by: Richard Eames <eclipse@naddiseo.ca>
Diffstat (limited to 'lrparser/org.eclipse.cdt.core.lrparser')
-rw-r--r--lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/core/dom/lrparser/ScannerExtensionConfiguration.java6
1 files changed, 5 insertions, 1 deletions
diff --git a/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/core/dom/lrparser/ScannerExtensionConfiguration.java b/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/core/dom/lrparser/ScannerExtensionConfiguration.java
index 502ec24b536..881c8755dc4 100644
--- a/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/core/dom/lrparser/ScannerExtensionConfiguration.java
+++ b/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/core/dom/lrparser/ScannerExtensionConfiguration.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2008 IBM Corporation and others All rights reserved. This
+ * Copyright (c) 2008, 2015 IBM Corporation and others All rights reserved. This
* program and the accompanying materials are made available under the terms of
* the Eclipse Public License v1.0 which accompanies this distribution, and is
* available at http://www.eclipse.org/legal/epl-v10.html
@@ -41,4 +41,8 @@ public class ScannerExtensionConfiguration extends AbstractScannerExtensionConfi
return true;
}
+ @Override
+ public boolean supportUserDefinedLiterals() {
+ return false;
+ }
}

Back to the top