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:
parent
61fa9916b6
commit
48799b684f
1 changed files with 3 additions and 5 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Reference in a new issue