Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Schorn2009-03-23 20:27:40 +0000
committerMarkus Schorn2009-03-23 20:27:40 +0000
commit32878a0b9387adfbcc3e4a4268ce4415238d9924 (patch)
tree12dcc70b4335cc479d4800823979f547a3587f55 /core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/index/composite/cpp/CompositeCPPMethod.java
parentf95a890c94952276c4f7d09af39c105a8017ae3c (diff)
downloadorg.eclipse.cdt-32878a0b9387adfbcc3e4a4268ce4415238d9924.tar.gz
org.eclipse.cdt-32878a0b9387adfbcc3e4a4268ce4415238d9924.tar.xz
org.eclipse.cdt-32878a0b9387adfbcc3e4a4268ce4415238d9924.zip
Invalid attempts of using user-defined conversions, bug 269729.
Diffstat (limited to 'core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/index/composite/cpp/CompositeCPPMethod.java')
-rw-r--r--core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/index/composite/cpp/CompositeCPPMethod.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/index/composite/cpp/CompositeCPPMethod.java b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/index/composite/cpp/CompositeCPPMethod.java
index 46500fc298a..891ad039122 100644
--- a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/index/composite/cpp/CompositeCPPMethod.java
+++ b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/index/composite/cpp/CompositeCPPMethod.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2007, 2008 Symbian Software Systems and others.
+ * Copyright (c) 2007, 2009 Symbian Software Systems 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
@@ -23,7 +23,7 @@ class CompositeCPPMethod extends CompositeCPPFunction implements ICPPMethod {
super(cf, rbinding);
}
- public boolean isDestructor() throws DOMException {
+ public boolean isDestructor() {
return ((ICPPMethod)rbinding).isDestructor();
}

Back to the top