mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-19 15:05:36 +02:00
Fix qualifiers of CBasicType, bug 209682.
This commit is contained in:
parent
41ada3d495
commit
a6d8d84032
1 changed files with 2 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
|||
/*******************************************************************************
|
||||
* Copyright (c) 2005, 2006 IBM Corporation and others.
|
||||
* Copyright (c) 2005, 2007 IBM Corporation 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
|
||||
|
@ -46,7 +46,7 @@ public class CBasicType implements ICBasicType {
|
|||
( sds.isShort() ? CBasicType.IS_SHORT : 0 ) |
|
||||
( sds.isSigned() ? CBasicType.IS_SIGNED: 0 ) |
|
||||
( sds.isUnsigned()? CBasicType.IS_UNSIGNED : 0 ) |
|
||||
( sds.isUnsigned()? CBasicType.IS_LONGLONG : 0 ) |
|
||||
( sds.isLongLong()? CBasicType.IS_LONGLONG : 0 ) |
|
||||
( sds.isComplex() ? CBasicType.IS_COMPLEX : 0 ) |
|
||||
( sds.isImaginary()?CBasicType.IS_IMAGINARY : 0 );
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue