| 355 | } |
| 356 | |
| 357 | void FilePath::join(const StringView& _str) |
| 358 | { |
| 359 | char tmp[kMaxFilePath]; |
| 360 | strCopy(tmp, BX_COUNTOF(tmp), m_filePath); |
| 361 | strCat(tmp, BX_COUNTOF(tmp), "/"); |
| 362 | strCat(tmp, BX_COUNTOF(tmp), _str); |
| 363 | set(tmp); |
| 364 | } |
| 365 | |
| 366 | FilePath::operator StringView() const |
| 367 | { |
no test coverage detected