| 868 | |
| 869 | #if 0 |
| 870 | static 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 | |
| 881 | static const int kEXRVersionSize = 8; |
nothing calls this directly
no outgoing calls
no test coverage detected