summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2023-01-28 09:04:36 +0100
committerNicolas Werner <nicolas.werner@hotmail.de>2023-01-28 09:04:36 +0100
commit47e3257963cb8b2bac1fb94973adb57a82975a7e (patch)
tree7b7261a38a384c7b80574f4d4aa7b4fb1481c7d8 /src
parentSupport simplified spoiler input using || tags (diff)
downloadnheko-47e3257963cb8b2bac1fb94973adb57a82975a7e.tar.xz
Get rid of shadowing even if the shadowing there is probably the safer solution
Diffstat (limited to 'src')
-rw-r--r--src/Utils.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/Utils.cpp b/src/Utils.cpp

index 3a989215..d8313688 100644 --- a/src/Utils.cpp +++ b/src/Utils.cpp
@@ -718,15 +718,17 @@ process_spoilers(cmark_node *node) continue; std::string_view next_content = cmark_node_get_literal(next); - if (auto posEnd = next_content.find("||"); posEnd != std::string_view::npos) { + if (auto posEndNext = next_content.find("||"); + posEndNext != std::string_view::npos) { // We found the end of the spoiler std::string before_spoiler = std::string(content.substr(0, posStart)); - std::string after_spoiler = std::string(next_content.substr(posEnd + 2)); + std::string after_spoiler = + std::string(next_content.substr(posEndNext + 2)); std::string inside_spoiler_start = std::string(content.substr(posStart + 2)); std::string inside_spoiler_end = - std::string(next_content.substr(0, posEnd)); + std::string(next_content.substr(0, posEndNext)); std::string spoiler_text = extract_spoiler_warning(inside_spoiler_start);