Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDoug Schaefer2008-04-21 18:42:49 +0000
committerDoug Schaefer2008-04-21 18:42:49 +0000
commitdb11eb72ae1cf67598470e9c81c8ac8279959da0 (patch)
treee5b36dd9dc94179b7af7523197fd7447c6ab2d70 /core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/dom/parser/cpp/semantics/Conversions.java
parentfc3b72bb7aa638db9e570453d0ade1d71e34ac90 (diff)
downloadorg.eclipse.cdt-db11eb72ae1cf67598470e9c81c8ac8279959da0.tar.gz
org.eclipse.cdt-db11eb72ae1cf67598470e9c81c8ac8279959da0.tar.xz
org.eclipse.cdt-db11eb72ae1cf67598470e9c81c8ac8279959da0.zip
Get rid of special characters in file.
Diffstat (limited to 'core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/dom/parser/cpp/semantics/Conversions.java')
-rw-r--r--core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/dom/parser/cpp/semantics/Conversions.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/dom/parser/cpp/semantics/Conversions.java b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/dom/parser/cpp/semantics/Conversions.java
index 44fad0b4a7e..cf748ebabe3 100644
--- a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/dom/parser/cpp/semantics/Conversions.java
+++ b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/dom/parser/cpp/semantics/Conversions.java
@@ -83,7 +83,7 @@ public class Conversions {
// [13.3.3.1.4]
/*
- * is an lvalue (but is not a bit-field), and “cv1 T1” is reference-compatible with “cv2 T2,”
+ * is an lvalue (but is not a bit-field), and "cv1 T1" is reference-compatible with "cv2 T2,"
*/
// [13.3.3.1.4-1] direct binding
// [8.5.3-5]
@@ -93,7 +93,7 @@ public class Conversions {
} else if(T2 instanceof ICPPClassType && allowUDC) {
/*
* or has a class type (i.e., T2 is a class type) and can be implicitly converted to
- * an lvalue of type “cv3 T3,” where “cv1 T1” is reference-compatible with “cv3 T3” 92)
+ * an lvalue of type "cv3 T3," where "cv1 T1" is reference-compatible with "cv3 T3" 92)
* (this conversion is selected by enumerating the applicable conversion functions (13.3.1.6)
* and choosing the best one through overload resolution (13.3)).
*/
@@ -150,7 +150,7 @@ public class Conversions {
cost.rank= Cost.IDENTITY_RANK;
} else {
// 5 - Otherwise
- // Otherwise, a temporary of type “cv1 T1” is created and initialized from the initializer expression
+ // Otherwise, a temporary of type "cv1 T1" is created and initialized from the initializer expression
// using the rules for a non-reference copy initialization (8.5). The reference is then bound to the temporary.
// If T1 is reference-related to T2, cv1 must be the same cv-qualification as, or greater cvqualification
@@ -275,7 +275,7 @@ public class Conversions {
}
/**
- * [8.5.3] “cv1 T1” is reference-compatible with “cv2 T2” if T1 is reference-related
+ * [8.5.3] "cv1 T1" is reference-compatible with "cv2 T2" if T1 is reference-related
* to T2 and cv1 is the same cv-qualification as, or greater cv-qualification than, cv2.
* Note this is not a symmetric relation.
* @param cv1t1

Back to the top