Check if bool is defined in mixed C/C++

前端 未结 4 901
甜味超标
甜味超标 2021-02-05 19:51

So I\'m having issues with some code that I\'ve inherited. This code was building fine in a C-only environment, but now I need to use C++ to call this code. The header p

4条回答
  •  隐瞒了意图╮
    2021-02-05 20:39

    I had this "'char' followed by 'bool' is illegal" problem in VS also. The problem for me was I did not end my class declaration with a semi-colon- which I was not expecting to be the issue as this was in the header file and the problem was coming up in the cpp file! eg:

    class myClass
    {
    
    }; // <-- put the semi colon !!
    

提交回复
热议问题