ci: run clang-format on .h files too (#14597)

Co-authored-by: nektro <nektro@users.noreply.github.com>
This commit is contained in:
Meghan Denny
2024-10-15 16:54:49 -07:00
committed by GitHub
parent 409e674526
commit 06e733cc64
50 changed files with 1788 additions and 1740 deletions

View File

@@ -4,13 +4,14 @@
namespace Zig {
DEFINE_NATIVE_MODULE(NodeStringDecoder) {
INIT_NATIVE_MODULE(1);
DEFINE_NATIVE_MODULE(NodeStringDecoder)
{
INIT_NATIVE_MODULE(1);
put(JSC::Identifier::fromString(vm, "StringDecoder"_s),
globalObject->JSStringDecoder());
put(JSC::Identifier::fromString(vm, "StringDecoder"_s),
globalObject->JSStringDecoder());
RETURN_NATIVE_MODULE();
RETURN_NATIVE_MODULE();
}
} // namespace Zig