1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-08 10:16:03 +02:00

Bug 418390 - ArrayIndexOutOfBoundsException in Chunk.putInt

This commit is contained in:
Sergey Prigogin 2013-09-30 17:59:45 -07:00
parent 61fa9916b6
commit 48799b684f

View file

@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2007, 2010 QNX Software Systems and others.
* Copyright (c) 2007, 2013 QNX 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
@ -22,11 +22,9 @@ import org.eclipse.core.runtime.CoreException;
*/
class PDOMCPPConstructorTemplateSpecialization extends PDOMCPPMethodTemplateSpecialization
implements ICPPConstructor {
/**
* The size in bytes of a PDOMCPPConstructorTemplateSpecialization record in the database.
*/
/** The size in bytes of a PDOMCPPConstructorTemplateSpecialization record in the database. */
@SuppressWarnings("hiding")
protected static final int RECORD_SIZE = PDOMCPPFunctionSpecialization.RECORD_SIZE + 0;
protected static final int RECORD_SIZE = PDOMCPPMethodTemplateSpecialization.RECORD_SIZE + 0;
public PDOMCPPConstructorTemplateSpecialization(PDOMCPPLinkage linkage, PDOMNode parent,
ICPPConstructor constructor, PDOMBinding specialized) throws CoreException {