internal error #432 while compiling code with class definition

キャンセル
次の結果を表示 
表示  限定  | 次の代わりに検索 
もしかして: 

internal error #432 while compiling code with class definition

1,764件の閲覧回数
Hall
Contributor I
I am programming microcontroller MC9S12NE64 in C++. I can create class as following:
 
class relay {
  private:
    int m_bit;
    int m_state;
 
  public: 
    .
    some methods...
    .
};
 
however, if I want to add another one variable, the compiler throw this error:
 
internal error #432 in 'f:\build\Products\Hiware\cw_hc12_Build_Tools\hiware\srs\COMPILER\BACK\HC12\Glbreg.c' while compiling file '....\main.cpp', procedure 'main', please report to Freescale
 
what is wrong with such declaration:
 
class relay {
  private:
    char *m_title;
    int m_bit;
    int m_state;
 
  public: 
    .
    some methods...
    .
};
 
Thanks for answers...
ラベル(1)
0 件の賞賛
返信
1 返信

900件の閲覧回数
JimDon
Senior Contributor III
The problem is that c++ is not used much in this domain.

I think you should submit a service request.
0 件の賞賛
返信