Skip to content

Commit b319082

Browse files
committed
Fix missing include in loader config test
This file uses `std::find` which is part of `<algorithm>` but it wasn't including it. This causes build failures with gcc 14.
1 parent cc2d590 commit b319082

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

test/loader/loader_config/urLoaderConfigGetInfo.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55

66
#include "fixtures.hpp"
77

8+
#include <algorithm>
9+
810
struct urLoaderConfigGetInfoWithParamTest
911
: LoaderConfigTest,
1012
::testing::WithParamInterface<ur_loader_config_info_t> {

0 commit comments

Comments
 (0)