Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEugene Tarassov2014-11-26 16:48:11 +0000
committerEugene Tarassov2014-11-26 16:48:48 +0000
commit136af638da0700d6b94467584896f031c140439b (patch)
treef2ef10b4a18b4bfc6780f762e46aaea7c0eae037 /plugins
parentb3566f603a25da9b8c24e8507bdda040c7aa0895 (diff)
downloadorg.eclipse.tcf-136af638da0700d6b94467584896f031c140439b.tar.gz
org.eclipse.tcf-136af638da0700d6b94467584896f031c140439b.tar.xz
org.eclipse.tcf-136af638da0700d6b94467584896f031c140439b.zip
Bug 451579 - C++11: missing support of rvalue reference type
Diffstat (limited to 'plugins')
-rw-r--r--plugins/org.eclipse.tcf.core/src/org/eclipse/tcf/services/ISymbols.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/org.eclipse.tcf.core/src/org/eclipse/tcf/services/ISymbols.java b/plugins/org.eclipse.tcf.core/src/org/eclipse/tcf/services/ISymbols.java
index 2c6d7ea70..7b46cf80a 100644
--- a/plugins/org.eclipse.tcf.core/src/org/eclipse/tcf/services/ISymbols.java
+++ b/plugins/org.eclipse.tcf.core/src/org/eclipse/tcf/services/ISymbols.java
@@ -82,7 +82,7 @@ public interface ISymbols extends IService {
SYM_FLAG_INHERITANCE = 0x02000000,
SYM_FLAG_BOOL_TYPE = 0x04000000,
SYM_FLAG_INDIRECT = 0x08000000,
- SYM_FLAG_LVALUE = 0x10000000;
+ SYM_FLAG_RVALUE = 0x10000000;
/**
* Symbol context interface.

Back to the top