[rocprofiler-register] Fix compilation with libc++ (#1241)

`tests/rocprofiler/rocprofiler.cpp` uses `std::string` without including `<string>` directly.
This works with libstdc++ due to transitive includes, but fails with libc++.

Closes #1240
이 커밋은 다음에 포함됨:
Sv. Lockal
2026-01-03 00:56:56 +08:00
커밋한 사람 GitHub
부모 aecc845456
커밋 afaa412d9d
+1
파일 보기
@@ -33,6 +33,7 @@
#include <pthread.h>
#include <sstream>
#include <stdexcept>
#include <string>
#include <string_view>
#include <tuple>
#include <vector>