clang-tidy modernize
This commit is contained in:
@@ -67,7 +67,7 @@ void Writer::setEnabled(bool value) {
|
||||
}
|
||||
|
||||
// Obtiene el valor de la variable
|
||||
bool Writer::isEnabled() const {
|
||||
auto Writer::isEnabled() const -> bool {
|
||||
return enabled_;
|
||||
}
|
||||
|
||||
@@ -82,6 +82,6 @@ void Writer::center(int x) {
|
||||
}
|
||||
|
||||
// Obtiene el valor de la variable
|
||||
bool Writer::hasFinished() const {
|
||||
auto Writer::hasFinished() const -> bool {
|
||||
return finished_;
|
||||
}
|
||||
Reference in New Issue
Block a user