Skip to content

Commit 80c47ad

Browse files
committed
[SandboxIR][Bench] Fix missing include
In 362da64 "[SandboxIR][Bench] Test RAUW (#107440)" we started using std::stringstream, but didn't include `<sstream>` for the definition. This is resulting in a build failure on windows.
1 parent 8ae5521 commit 80c47ad

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

llvm/benchmarks/SandboxIRBench.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
#include "llvm/SandboxIR/SandboxIR.h"
2222
#include "llvm/Support/SourceMgr.h"
2323
#include <memory>
24+
#include <sstream>
2425

2526
using namespace llvm;
2627

0 commit comments

Comments
 (0)