Skip to content

Commit

Permalink
!!!!!
Browse files Browse the repository at this point in the history
  • Loading branch information
V0ldek committed Sep 10, 2023
1 parent 1cb4b60 commit e036f97
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,10 @@ jobs:
run: sudo apt install lld
- name: Install lld (MacOS)
if: matrix.os == 'macos-latest'
run: brew install --with-lld --HEAD llvm
run: |
brew install llvm
export PATH=/usr/local/opt/llvm/bin:$PATH
export LD_LIBRARY_PATH=$(llvm-config --libdir):$LD_LIBRARY_PATH
- name: Install winget (Windows)
if: matrix.os == 'windows-latest'
uses: Cyberboss/install-winget@3301de662a82d09e8aded238e995a8e1259159c8
Expand Down
2 changes: 1 addition & 1 deletion crates/rsonpath-lib/src/classification/simd.rs
Original file line number Diff line number Diff line change
Expand Up @@ -633,7 +633,7 @@ cfg_if! {
macro_rules! simd_dispatch {
($conf:expr => |$simd:ident| $b:block) => {
let conf = $conf;
assert_eq!(conf.highest_simd(), SimdTag::Nosimd);
assert_eq!(conf.highest_simd(), $crate::classification::simd::SimdTag::Nosimd);
assert!(!conf.fast_quotes());
assert!(!conf.fast_popcnt());
let $simd = $crate::classification::simd::ResolvedSimd::<
Expand Down

0 comments on commit e036f97

Please sign in to comment.