mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-11 15:49:07 +08:00
48f861d3d9
* [concurrencpp] Fix error C2039: 'numeric_limits': is not a member of 'std' * format
13 lines
454 B
Diff
13 lines
454 B
Diff
diff --git a/include/concurrencpp/executors/constants.h b/include/concurrencpp/executors/constants.h
|
|
index c717831..3a3d700 100644
|
|
--- a/include/concurrencpp/executors/constants.h
|
|
+++ b/include/concurrencpp/executors/constants.h
|
|
@@ -2,6 +2,7 @@
|
|
#define CONCURRENCPP_EXECUTORS_CONSTS_H
|
|
|
|
#include <numeric>
|
|
+#include <limits>
|
|
|
|
namespace concurrencpp::details::consts {
|
|
inline const char* k_inline_executor_name = "concurrencpp::inline_executor";
|