ex05: remove const to respect the subject

This commit is contained in:
Camille Chauvet
2023-07-31 17:48:23 +02:00
parent a7e4a9cd75
commit 5522ebf3ba
2 changed files with 9 additions and 9 deletions

View File

@ -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)();