diff options
| author | 2025-03-22 17:13:09 +0000 | |
|---|---|---|
| committer | 2025-03-22 17:16:28 +0000 | |
| commit | 0aeb615182cf877f08dd218b7de9aae4a6e074ce (patch) | |
| tree | a1aa72ddc024bf30303808836126188339d6c153 /src/configparser.cpp | |
| parent | Migrate configparser/configreader away from stringstream. (diff) | |
Only include <sstream> from files that actually use it.
Diffstat (limited to 'src/configparser.cpp')
| -rw-r--r-- | src/configparser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/configparser.cpp b/src/configparser.cpp index af1785e23..4ce3b7f08 100644 --- a/src/configparser.cpp +++ b/src/configparser.cpp @@ -328,7 +328,7 @@ struct Parser final } catch (const CoreException& err) { - stack.errors.push(FMT::format("{} at {}", err.GetReason(), current.str())); + stack.errors.push_back(FMT::format("{} at {}", err.GetReason(), current.str())); if (tag) stack.errors.back().append(FMT::format(" (inside {} tag on line {})", tag->name, tag->source.line)); else if (last_tag.line) |
