File tree Expand file tree Collapse file tree 2 files changed +0
-11
lines changed Expand file tree Collapse file tree 2 files changed +0
-11
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,6 @@ RUN wget https://apt.llvm.org/llvm.sh
11
11
RUN chmod +x llvm.sh
12
12
RUN ./llvm.sh 19
13
13
RUN git clone -b p2996 https://github.com/bloomberg/clang-p2996.git
14
- RUN cd /clang-p2996 && git reset HEAD~1 --hard
15
14
RUN cmake -S /clang-p2996/llvm \
16
15
-B build \
17
16
-G Ninja \
Original file line number Diff line number Diff line change @@ -126,16 +126,6 @@ struct std::formatter<ConfigEntry<A, B>> {
126
126
}
127
127
};
128
128
129
- template <typename A, typename B>
130
- struct std ::formatter<boxed::detail::boxed<A, B>> {
131
- using Boxed = boxed::detail::boxed<A, B>;
132
- constexpr auto parse (format_parse_context &ctx) { return ctx.begin (); }
133
-
134
- auto format (const Boxed &obj, format_context &ctx) const {
135
- return std::format_to (ctx.out (), " {}" , obj.value );
136
- }
137
- };
138
-
139
129
template <typename T> void serialize (T const &val) {
140
130
log::println (" ================================== [Serialized] YAML" );
141
131
auto data_yaml = form::format_yaml (val);
You can’t perform that action at this time.
0 commit comments