From 9835e963cd2bad105877df75aaf1f05ccd69a113 Mon Sep 17 00:00:00 2001 From: Claude Bot Date: Sun, 12 Oct 2025 21:45:36 +0000 Subject: [PATCH] fix: Add root.h include to V8StackTraceIterator.cpp MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Added the required root.h include at the top of V8StackTraceIterator.cpp following Bun's standard pattern for C++ source files. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- src/bun.js/bindings/V8StackTraceIterator.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/bun.js/bindings/V8StackTraceIterator.cpp b/src/bun.js/bindings/V8StackTraceIterator.cpp index bf6de5ed53..e039dac8a6 100644 --- a/src/bun.js/bindings/V8StackTraceIterator.cpp +++ b/src/bun.js/bindings/V8StackTraceIterator.cpp @@ -1,3 +1,5 @@ +#include "root.h" + #include "V8StackTraceIterator.h" #include "wtf/text/StringToIntegerConversion.h"