From a7e6d9f044cb0b1e9b302569be0fc387e6f81fae Mon Sep 17 00:00:00 2001 From: ClausKlein Date: Thu, 18 Feb 2021 09:55:01 +0100 Subject: [PATCH] respect review comment remove NOLINT comment --- standalone/source/main.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/standalone/source/main.cpp b/standalone/source/main.cpp index 55588bb..938a386 100644 --- a/standalone/source/main.cpp +++ b/standalone/source/main.cpp @@ -6,8 +6,7 @@ #include #include -// NOLINTNEXTLINE(modernize-use-trailing-return-type) -int main(int argc, char** argv) { +auto main(int argc, char** argv) -> int { const std::unordered_map languages{ {"en", greeter::LanguageCode::EN}, {"de", greeter::LanguageCode::DE},