We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f91a2a commit 218655eCopy full SHA for 218655e
1 file changed
src/parser/script.cpp
@@ -4,6 +4,8 @@
4
#include "parser/parser_state.hpp"
5
#include "parser/parser_utilities.hpp"
6
7
+#include <algorithm>
8
+
9
namespace mfl::parser
10
{
11
namespace
@@ -70,10 +72,7 @@ namespace mfl::parser
70
72
else if (sup1)
71
73
std::ranges::move(*sup1, std::back_inserter(*sup));
74
}
- else
- {
75
- sup = sup0 ? sup0 : sup1;
76
- }
+ else { sup = sup0 ? sup0 : sup1; }
77
78
if (sub || sup) return {script{.nucleus = nucleus, .sub = sub, .sup = sup}};
79
0 commit comments