Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion src/python/pybind11/src/pyxrt.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@
// C++11 includes
#include <string>

#ifdef _MSC_VER
#pragma warning(disable: 4996) // C4996: deprecated function; Python binding delegates to C++
#endif

namespace py = pybind11;

PYBIND11_MAKE_OPAQUE(std::vector<xrt::xclbin::ip>);
Expand Down Expand Up @@ -493,4 +497,3 @@ PYBIND11_MODULE(pyxrt, m) {
}), "Wait for the specified timeout for the runlist to complete");

}

Loading