(学习)C ++不支持default-int

时间:2017-12-19 01:35:18

标签: c++

      struct surfacegameprops_t
    {
        float maxspeedfactor;
        float jumpfactor;
        float penetrationmodifier;
        float damagemodifier;
        uint16_t material;
        uint8_t climbable;
     };

我正在学习,我无法弄清楚如何解决这个问题“c ++不支持default-int”。 我看过其他一些关于同样问题的帖子,但我找不到任何东西。

还有一些未定义的错误。

1

1 个答案:

答案 0 :(得分:1)

类型的全名是std::uint16_tstd::uint8_t,表示您需要标准库中的类型。

您还必须加入the proper header <cstdint>