| 759 | |
| 760 | #if 0 |
| 761 | static void SetWarningMessage(const std::string &msg, const char **warn) { |
| 762 | if (warn) { |
| 763 | #ifdef _WIN32 |
| 764 | (*warn) = _strdup(msg.c_str()); |
| 765 | #else |
| 766 | (*warn) = strdup(msg.c_str()); |
| 767 | #endif |
| 768 | } |
| 769 | } |
| 770 | #endif |
| 771 | |
| 772 | static const int kEXRVersionSize = 8; |
nothing calls this directly
no outgoing calls
no test coverage detected