'uint32_t' does not name a type

后端 未结 9 1629
旧时难觅i
旧时难觅i 2021-01-30 12:13

I\'m trying to compile a C++ software package that was written in 2007 and I\'m getting this error:

error: ‘uint32_t’ does not name a type

This is h

9条回答
  •  故里飘歌
    2021-01-30 12:47

    if it happened when you include opencv header.

    I would recommand that change the order of headers.

    put the opencv headers just below the standard C++ header.

    like this:

    #include
    #include
    #include
    

提交回复
热议问题