From f462562ab7c16f7b01bc8b838e60f49f4fa1090b Mon Sep 17 00:00:00 2001 From: King_DuckZ Date: Mon, 13 Apr 2020 14:35:46 +0200 Subject: [PATCH] Remove indentation --- src/env_base.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/env_base.cpp b/src/env_base.cpp index 1cb8e00..1c45d66 100644 --- a/src/env_base.cpp +++ b/src/env_base.cpp @@ -18,7 +18,7 @@ #include "env_base.hpp" namespace duck { - bool EnvBase::empty() const noexcept { - return 0 == this->size(); - } +bool EnvBase::empty() const noexcept { + return 0 == this->size(); +} } //namespace duck