Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRay Molenkamp <github@lazydodo.com>2022-11-10 00:39:15 +0300
committerRay Molenkamp <github@lazydodo.com>2022-11-10 00:39:15 +0300
commit7c1ab77fa67252b6a0c61fb53f114c7c1916e364 (patch)
tree2bc144ed54b620b5e9291128c42463f920d49e01
parentc8cec113536c6d931847b08b03745f90c34a0339 (diff)
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.
-rw-r--r--extern/audaspace/include/devices/DeviceManager.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/extern/audaspace/include/devices/DeviceManager.h b/extern/audaspace/include/devices/DeviceManager.h
index 27a546630e8..fa84025478f 100644
--- a/extern/audaspace/include/devices/DeviceManager.h
+++ b/extern/audaspace/include/devices/DeviceManager.h
@@ -27,6 +27,7 @@
#include <memory>
#include <vector>
#include <unordered_map>
+#include <string>
AUD_NAMESPACE_BEGIN