Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSergey Prigogin2008-12-27 18:11:01 +0000
committerSergey Prigogin2008-12-27 18:11:01 +0000
commita443b1fafcbdaf237d3a599fb393a037e0b9c574 (patch)
tree789ad53070be6df5c085635089b6984421c6c5f5
parentaf7be7e3959bca1dca30aebcce203170d1c763c8 (diff)
downloadorg.eclipse.cdt-a443b1fafcbdaf237d3a599fb393a037e0b9c574.tar.gz
org.eclipse.cdt-a443b1fafcbdaf237d3a599fb393a037e0b9c574.tar.xz
org.eclipse.cdt-a443b1fafcbdaf237d3a599fb393a037e0b9c574.zip
Comment adjustment.
-rw-r--r--core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/pdom/dom/cpp/PDOMCPPSpecialization.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/pdom/dom/cpp/PDOMCPPSpecialization.java b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/pdom/dom/cpp/PDOMCPPSpecialization.java
index f5afd78c54b..1cfea037569 100644
--- a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/pdom/dom/cpp/PDOMCPPSpecialization.java
+++ b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/pdom/dom/cpp/PDOMCPPSpecialization.java
@@ -49,10 +49,10 @@ abstract class PDOMCPPSpecialization extends PDOMCPPBinding implements ICPPSpeci
super(pdom, parent, spec.getNameCharArray());
pdom.getDB().putInt(record + SPECIALIZED, specialized.getRecord());
- // specializations that are no instances have the same map as their owner.
+ // specializations that are not instances have the same map as their owner.
if (this instanceof ICPPTemplateInstance) {
int rec= PDOMCPPTemplateParameterMap.putMap(this, spec.getTemplateParameterMap());
- pdom.getDB().putInt(record+ARGMAP, rec);
+ pdom.getDB().putInt(record + ARGMAP, rec);
}
try {
Integer sigHash = IndexCPPSignatureUtil.getSignatureHash(spec);

Back to the top