MCPcopy Create free account
hub / github.com/antmachineintelligence/mtgbmcode / getenv

Function getenv

compute/include/boost/compute/detail/getenv.hpp:20–30  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

18namespace detail {
19
20inline const char* getenv(const char *env_var)
21{
22#ifdef _MSC_VER
23# pragma warning(push)
24# pragma warning(disable: 4996)
25#endif
26 return std::getenv(env_var);
27#ifdef _MSC_VER
28# pragma warning(pop)
29#endif
30}
31
32} // end detail namespace
33} // end compute namespace

Callers 2

find_default_deviceMethod · 0.85
path.hppFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected