audaspace: Fix build error with MSVC 17.4+

`DeviceManager.h` uses `std::string` without explicitly including
the `<string>` header. While older MSVC implicitly included this
header somewhere, the headers for 17.4+ do not leading to a build
error.
This commit is contained in:
Ray Molenkamp 2022-11-09 14:39:15 -07:00
parent c8cec11353
commit 7c1ab77fa6
1 changed files with 1 additions and 0 deletions

View File

@ -27,6 +27,7 @@
#include <memory>
#include <vector>
#include <unordered_map>
#include <string>
AUD_NAMESPACE_BEGIN