Skip to content

Commit db9f07e

Browse files
DKLoehrrpavlik
authored andcommitted
Include <iterator> directly in api_layer_interface.cpp
The newest version of LLVM's libc++ no longer includes <iterator> transitively, so we need to include it directly in order to have access to `std::back_inserter`.
1 parent 47c4761 commit db9f07e

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Fix: Add missing include directive in loader code.

src/loader/api_layer_interface.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
#include <openxr/openxr_loader_negotiation.h>
2020

2121
#include <cstring>
22+
#include <iterator>
2223
#include <memory>
2324
#include <sstream>
2425
#include <string>

0 commit comments

Comments
 (0)