1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Code formatting.

This commit is contained in:
Sergey Prigogin 2008-11-08 23:48:29 +00:00
parent d9a42eb002
commit 4f541baeb7
2 changed files with 5 additions and 6 deletions

View file

@ -42,7 +42,6 @@ import org.eclipse.core.runtime.CoreException;
* @author Bryan Wilkinson
*/
public class PDOMCPPClassTemplate extends PDOMCPPClassType implements ICPPClassTemplate, ICPPInstanceCache {
private static final int PARAMETERS = PDOMCPPClassType.RECORD_SIZE + 0;
private static final int FIRST_PARTIAL = PDOMCPPClassType.RECORD_SIZE + 4;

View file

@ -47,8 +47,8 @@ class PDOMCPPFunctionTemplate extends PDOMCPPFunction
@SuppressWarnings("hiding")
protected static final int RECORD_SIZE = PDOMCPPFunction.RECORD_SIZE + 4;
public PDOMCPPFunctionTemplate(PDOM pdom, PDOMNode parent,
ICPPFunctionTemplate template) throws CoreException {
public PDOMCPPFunctionTemplate(PDOM pdom, PDOMNode parent, ICPPFunctionTemplate template)
throws CoreException {
super(pdom, parent, (ICPPFunction) template, false);
}