MCPcopy Create free account
hub / github.com/ARM-software/astc-encoder / SetWarningMessage

Function SetWarningMessage

Source/ThirdParty/tinyexr.h:870–878  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

868
869#if 0
870static void SetWarningMessage(const std::string &msg, const char **warn) {
871 if (warn) {
872#ifdef _WIN32
873 (*warn) = _strdup(msg.c_str());
874#else
875 (*warn) = strdup(msg.c_str());
876#endif
877 }
878}
879#endif
880
881static const int kEXRVersionSize = 8;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected