Skip to content

Commit 982f0b8

Browse files
committed
update
1 parent 2909d53 commit 982f0b8

File tree

2 files changed

+0
-11
lines changed

2 files changed

+0
-11
lines changed

.github/DockerClang

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ RUN wget https://apt.llvm.org/llvm.sh
1111
RUN chmod +x llvm.sh
1212
RUN ./llvm.sh 19
1313
RUN git clone -b p2996 https://github.com/bloomberg/clang-p2996.git
14-
RUN cd /clang-p2996 && git reset HEAD~1 --hard
1514
RUN cmake -S /clang-p2996/llvm \
1615
-B build \
1716
-G Ninja \

src/test.h

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -126,16 +126,6 @@ struct std::formatter<ConfigEntry<A, B>> {
126126
}
127127
};
128128

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-
139129
template <typename T> void serialize(T const &val) {
140130
log::println("================================== [Serialized] YAML");
141131
auto data_yaml = form::format_yaml(val);

0 commit comments

Comments
 (0)