Switch to std::span (#3376)

Now that we have cpp20 we can ditch nonstd::span.

Depends on #3375
This commit is contained in:
Ziemas
2024-02-18 19:23:19 +01:00
committed by GitHub
parent 0011fb4b2b
commit 4e569f0115
11 changed files with 32 additions and 1917 deletions
+6 -1
View File
@@ -31,10 +31,15 @@ jobs:
run: |
sudo apt update
sudo apt install build-essential cmake \
clang gcc g++ lcov make nasm libxrandr-dev \
clang gcc-10 g++-10 lcov make nasm libxrandr-dev \
libxinerama-dev libxcursor-dev libpulse-dev \
libxi-dev zip ninja-build libgl1-mesa-dev libssl-dev
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-10 100
sudo update-alternatives --set gcc /usr/bin/gcc-10
sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-10 100
sudo update-alternatives --set g++ /usr/bin/g++-10
- name: Setup Buildcache
uses: mikehardy/buildcache-action@v2.1.0
with: