diff --git a/src/strings.cpp b/src/strings.cpp index 0cad808..0018d29 100644 --- a/src/strings.cpp +++ b/src/strings.cpp @@ -1,5 +1,5 @@ /* This file is part of gitea2rss. - * Copyright © 2019, 2020 tastytea + * Copyright © 2019-2021 tastytea * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -15,6 +15,7 @@ */ #include "gitea2rss.hpp" + #include #include #include @@ -50,8 +51,8 @@ string get_project(const string &url) string escape_some_html(string html) { - const std::map names = {{'<', "<"}, - {'>', ">"}}; + const std::map names = {{'<', "<"}, + {'>', ">"}}; for (const auto &pair : names) {