[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
Este commit está contenido en:
Sv. Lockal
2026-01-03 00:56:56 +08:00
cometido por GitHub
padre aecc845456
commit afaa412d9d
@@ -33,6 +33,7 @@
#include <pthread.h>
#include <sstream>
#include <stdexcept>
#include <string>
#include <string_view>
#include <tuple>
#include <vector>