ex05: remove const to respect the subject
This commit is contained in:
@ -5,13 +5,13 @@
|
||||
class Harl
|
||||
{
|
||||
private:
|
||||
void debug() const;
|
||||
void info() const;
|
||||
void warning() const;
|
||||
void error() const;
|
||||
void debug();
|
||||
void info();
|
||||
void warning();
|
||||
void error();
|
||||
|
||||
public:
|
||||
void complain(std::string level);
|
||||
};
|
||||
|
||||
typedef void (Harl::*HarlMethod)() const;
|
||||
typedef void (Harl::*HarlMethod)();
|
||||
|
Reference in New Issue
Block a user