c++を使用中に以下のエラーが発生。
static member function cannot have cv-qualifier
対処方法
staticメンバー関数のconstを取る。
例
class Hoge {
public:
static int hoge() const; // このconstを取り去る。
};
Go to list of users who liked
More than 5 years have passed since last update.
c++を使用中に以下のエラーが発生。
static member function cannot have cv-qualifier
対処方法
staticメンバー関数のconstを取る。
例
class Hoge {
public:
static int hoge() const; // このconstを取り去る。
};
Register as a new user and use Qiita more conveniently
Go to list of users who liked