Skip to content

Commit 6a91919

Browse files
committed
runtime: add missing include
The use of `std::make_tuple` requires the declaration of the function which is provided by the C++ standard header `tuple`. This would get implicitly included by one of the other C++ headers on the currently tested libraries, but does not occur with the Microsoft C++ library. Add the missing include.
1 parent e9fff22 commit 6a91919

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

stdlib/public/runtime/Reflection.mm

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
#include <cstring>
2525
#include <new>
2626
#include <string>
27+
#include <tuple>
2728

2829
#if SWIFT_OBJC_INTEROP
2930
#include "swift/Runtime/ObjCBridge.h"

0 commit comments

Comments
 (0)