Skip to content

Commit b6ebdcd

Browse files
authored
Merge pull request #577 from intel/lukevalenty/lookup_defaults
2 parents 49e43f9 + ba3acc1 commit b6ebdcd

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

.github/workflows/unit_tests.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,6 @@ jobs:
4040
compiler: clang
4141
install: wget https://apt.llvm.org/llvm.sh && chmod +x llvm.sh && sudo ./llvm.sh 18
4242
toolchain_root: "/usr/lib/llvm-18"
43-
- version: 18
44-
compiler: clang
45-
stdlib: libc++
46-
install: wget https://apt.llvm.org/llvm.sh && chmod +x llvm.sh && sudo ./llvm.sh 18 && sudo apt install -y libc++-18-dev libc++abi-18-dev
47-
cxx_flags: "-stdlib=libc++"
4843
- version: 17
4944
compiler: clang
5045
install: wget https://apt.llvm.org/llvm.sh && chmod +x llvm.sh && sudo ./llvm.sh 17
@@ -96,6 +91,9 @@ jobs:
9691
cxx: "g++-12"
9792
cxx_flags: ""
9893
exclude:
94+
- compiler: clang
95+
version: 18
96+
stdlib: libc++
9997
- compiler: gcc
10098
version: 18
10199
- compiler: gcc

include/lookup/lookup.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@
1010
namespace lookup {
1111
[[nodiscard]] CONSTEVAL static auto make(compile_time auto input) {
1212
return strategies<linear_search_lookup<4>,
13-
pseudo_pext_lookup<true, 2>>::make(input);
13+
pseudo_pext_lookup<true, 1>>::make(input);
1414
}
1515
} // namespace lookup

0 commit comments

Comments
 (0)