From 1eab058c562ed851332745b5396fee776267481c Mon Sep 17 00:00:00 2001 From: Matej Focko Date: Fri, 17 May 2024 18:12:29 +0200 Subject: [PATCH] style(cpp): reformat Signed-off-by: Matej Focko --- cpp/evaluate-reverse-polish-notation.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cpp/evaluate-reverse-polish-notation.cpp b/cpp/evaluate-reverse-polish-notation.cpp index 58cddbe..8e5e2a8 100644 --- a/cpp/evaluate-reverse-polish-notation.cpp +++ b/cpp/evaluate-reverse-polish-notation.cpp @@ -4,8 +4,8 @@ #include class Solution { - static auto get_function(const std::string &op) - -> std::function { + static auto + get_function(const std::string &op) -> std::function { if (op == "+") { return std::plus{}; } else if (op == "-") {