Skip to content

Commit

Permalink
[SandboxIR][Bench] Fix missing include
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
bogner committed Sep 8, 2024
1 parent 8ae5521 commit 80c47ad
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions llvm/benchmarks/SandboxIRBench.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
#include "llvm/SandboxIR/SandboxIR.h"
#include "llvm/Support/SourceMgr.h"
#include <memory>
#include <sstream>

using namespace llvm;

Expand Down

0 comments on commit 80c47ad

Please sign in to comment.