代码之家  ›  专栏  ›  技术社区  ›  WilliamKF

这意味着什么:“错误:多个类型说明符的无效组合”

  •  1
  • WilliamKF  · 技术社区  · 14 年前

    error: invalid combination of multiple type-specifiers
    

    从C++代码中:

    typedef unsigned off_t uoff_t;
    

    不知道gcc编译器想告诉我什么。

    2 回复  |  直到 14 年前
        1
  •  3
  •   usta    14 年前

    使用 typedef boost::make_unsigned< off_t >::type uoff_t; 而是为了达到预期的效果。

        2
  •  4
  •   Cheers and hth. - Alf    14 年前

    除非 off_t

    unsigned 不能添加到typedef'ed类型或用于修改此类类型。

    干杯。,