Try to fix more CI failures related to C++20

This commit is contained in:
Maxime Coste 2021-11-21 20:16:58 +11:00
parent 532a7d7a9e
commit 860b20ef0a
3 changed files with 4 additions and 2 deletions

View File

@ -22,7 +22,7 @@ linux_task:
matrix: matrix:
- name: linux_clang - name: linux_clang
container: container:
image: silkeh/clang:7 image: silkeh/clang:10
clang_script: clang_script:
- apt-get -y install pkg-config libncursesw5-dev - apt-get -y install pkg-config libncursesw5-dev
env: env:
@ -36,7 +36,7 @@ linux_task:
macos_task: macos_task:
osx_instance: osx_instance:
image: mojave-base image: big-sur-base
matrix: matrix:
- name: macos_clang - name: macos_clang
env: env:

View File

@ -5,6 +5,7 @@
#include "hash.hh" #include "hash.hh"
#include <type_traits> #include <type_traits>
#include <compare>
namespace Kakoune namespace Kakoune
{ {

View File

@ -4,6 +4,7 @@
#include "assert.hh" #include "assert.hh"
#include <memory> #include <memory>
#include <concepts>
namespace Kakoune namespace Kakoune
{ {