mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-28 00:29:56 +08:00
e3c1d7dab9
Fixes #39054 - [x] Changes comply with the [maintainer guide](https://github.com/microsoft/vcpkg-docs/blob/main/vcpkg/contributing/maintainer-guide.md). - [ ] ~~SHA512s are updated for each updated download.~~ - [ ] ~~The "supports" clause reflects platforms that may be fixed by this new version.~~ - [ ] ~~Any fixed [CI baseline](https://github.com/microsoft/vcpkg/blob/master/scripts/ci.baseline.txt) entries are removed from that file.~~ - [ ] ~~Any patches that are no longer applied are deleted from the port's directory.~~ - [x] The version database is fixed by rerunning `./vcpkg x-add-version --all` and committing the result. - [x] Only one version is added to each modified port's versions file. --------- Co-authored-by: Lily Wang <v-lilywang@microsoft.com>
13 lines
287 B
Diff
13 lines
287 B
Diff
diff --git a/src/common/module.cc b/src/common/module.cc
|
|
index 0eb5aad..b6f5da7 100644
|
|
--- a/src/common/module.cc
|
|
+++ b/src/common/module.cc
|
|
@@ -42,6 +42,7 @@
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
|
|
+#include <algorithm>
|
|
#include <functional>
|
|
#include <iostream>
|
|
#include <memory>
|