runtime_error was not declared in this scope for g++ 4.1.2

前端 未结 3 2075
北荒
北荒 2021-02-20 11:17

The same code is working fine on gcc 4.5.2 but when trying to compile it on gcc 4.1.2, I get the error ‘runtime_error’ was not declared in this scope.

I do

3条回答
  •  南方客
    南方客 (楼主)
    2021-02-20 11:41

    Do you have using namespace std; or using std::runtime_error;? If not, then you need to fully qualify the name and use std::runtime_error rather than just runtime_error.

提交回复
热议问题