| 35 | |
| 36 | namespace { |
| 37 | vector<string> libNames(const std::string& name, const string& suffix, |
| 38 | const Version& ver = arrayfire::common::NullVersion) { |
| 39 | UNUSED(ver); // Windows DLL files are not version suffixed |
| 40 | return {name + suffix + librarySuffix}; |
| 41 | } |
| 42 | } // namespace |
| 43 | |
| 44 | #elif defined(OS_MAC) |
no test coverage detected