Skip to content

Commit

Permalink
Merge pull request #2174 from ProGTX/peter/winfix
Browse files Browse the repository at this point in the history
[NFC][CUDA] Include STL headers in program.cpp
  • Loading branch information
aarongreig authored Oct 11, 2024
2 parents 2c4bf63 + d93b262 commit 53c461b
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions source/adapters/cuda/program.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,17 @@
#include "program.hpp"
#include "ur_util.hpp"

#include <algorithm>
#include <array>
#include <cstdint>
#include <cstring>
#include <memory>
#include <new>
#include <string>
#include <tuple>
#include <utility>
#include <vector>

bool getMaxRegistersJitOptionValue(const std::string &BuildOptions,
unsigned int &Value) {
using namespace std::string_view_literals;
Expand Down

0 comments on commit 53c461b

Please sign in to comment.