From 9031f0d526f7b670ed7e757810694fad61cdda9c Mon Sep 17 00:00:00 2001 From: tastytea Date: Sun, 29 Dec 2019 08:33:06 +0100 Subject: [PATCH] Shut up clang-tidy about goto. --- src/document.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/document.cpp b/src/document.cpp index 53811a1..997d9d9 100644 --- a/src/document.cpp +++ b/src/document.cpp @@ -83,7 +83,7 @@ void Document::download(const string &uri, const bool temp_redirect) { if (temp_redirect) { - goto temporary_redirect; + goto temporary_redirect; // NOLINT(cppcoreguidelines-avoid-goto) } _profiledata.feedurl = extract_location(response.headers); if (_profiledata.feedurl.empty())