to_string not declared in scope

前端 未结 6 783
[愿得一人]
[愿得一人] 2020-12-15 05:16

I am trying to make the to_string(NUMBER) function work in my Ubuntu computer for weeks but it never ever works in the QT environment or anywhere else. My code

6条回答
  •  醉梦人生
    2020-12-15 06:02

    I fixed this problem by changing the first line in Application.mk from

    APP_STL := gnustl_static
    

    to

    APP_STL := c++_static
    

提交回复
热议问题