SW500011 Microchip Technology, SW500011 Datasheet - Page 317

HI-TECH X PRO FOR PIC32

SW500011

Manufacturer Part Number
SW500011
Description
HI-TECH X PRO FOR PIC32
Manufacturer
Microchip Technology
Type
Compilerr
Series
PIC32r
Datasheet

Specifications of SW500011

No. Of User Licenses
1
Supported Families
PIC32
Core Architecture
PIC
Supported Hosts
Windows XP, Vista, Linux, Mac OS X
Software Edition
Professional
Kit Contents
Software And Docs
Tool Type
Compiler
Lead Free Status / RoHS Status
Not applicable / Not applicable
For Use With/related Products
PIC32 Series
Lead Free Status / Rohs Status
Lead free / RoHS Compliant
Other names
032
778-1007
778-1007
Error and Warning Messages
(265) integer constant expected
A colon appearing after a member name in a structure declaration indicates that the member is a
bitfield. An integral constant must appear after the colon to define the number of bits in the bitfield,
e.g.:
If this was meant to be a structure with bitfields, then the following illustrates an example:
(266) storage class illegal
A structure or union member may not be given a storage class. Its storage class is determined by the
storage class of the structure, e.g.:
(267) bad storage class
The code generator has encountered a variable definition whose storage class is invalid, e.g.:
struct FREG {
} freg;
struct {
} my_struct;
struct {
} my_struct;
struct {
} ;
auto int foo; /* auto not permitted with global variables */
int power(static int a) /* parameters may not be static */
{
}
char b0:1;
char
char b7:1;
unsigned first: /* oops -- should be: unsigned first; */
unsigned second;
unsigned first : 4; /* 4 bits wide */
unsigned second: 4; /* another 4 bits */
/* no additional qualifiers may be present with members */
static int first;
return foo * a;
:6;
/* these must be part of an int, not char */
(Code Generator)
(Parser)
(Parser)
317

Related parts for SW500011