Skip to content

Commit 2acdb9a

Browse files
committed
Upgraded deps
1 parent 3fca8aa commit 2acdb9a

File tree

8 files changed

+23
-19
lines changed

8 files changed

+23
-19
lines changed

.clang-format

-1
This file was deleted.

.clang-format

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
BinPackArguments: false
2+
BinPackParameters: false
3+
ColumnLimit: 80
4+
IndentWidth: 2

.gitignore

-1
This file was deleted.

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.build*

.prettierrc

-1
This file was deleted.

.prettierrc

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"bracketSpacing": false,
3+
"printWidth": 80,
4+
"semi": false,
5+
"singleQuote": true,
6+
"proseWrap": "always"
7+
}

.travis.yml

+6-12
Original file line numberDiff line numberDiff line change
@@ -6,24 +6,18 @@ notifications:
66
matrix:
77
include:
88
- os: linux
9-
dist: trusty
10-
addons:
11-
apt:
12-
sources:
13-
- ubuntu-toolchain-r-test
14-
- llvm-toolchain-trusty-7
15-
packages:
16-
- g++-8
17-
- clang-7
9+
dist: focal
1810
- os: osx
19-
osx_image: xcode10.2
11+
osx_image: xcode12.2
2012
- os: windows
2113

2214
git:
15+
depth: 1
2316
submodules: false
2417

2518
before_install:
26-
- git submodule update --init
19+
- export -f travis_nanoseconds travis_time_start travis_time_finish
2720

2821
script:
29-
- .cppsm/travis-ci || ./test
22+
- if ! [ -x .cppsm/travis-ci ]; then git submodule --quiet update --init --no-recommend-shallow --depth 1 .cppsm; fi
23+
- .cppsm/travis-ci

CMakeLists.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
cmake_minimum_required(VERSION 3.9)
2-
include(.cppsm/c++17-no-rtti-no-exns.cmake)
2+
project(lax.cpp)
3+
include(.cppsm/c++17.cmake)

internals/testing/type_traits_test.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ static inline constexpr bool is_stored_plain_v =
2323
static_assert(!is_stored_plain_v<char>);
2424
static_assert(!is_stored_plain_v<char *>);
2525
static_assert(is_stored_plain_v<int *>);
26-
static_assert(is_stored_plain_v<int * [2]>);
26+
static_assert(is_stored_plain_v<int *[2]>);

provides/include/lax_v1/comparison.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ template <class Lhs, class Rhs>
66
struct lax_v1::eq_m : auto_t<(value_of_v<Lhs> == value_of_v<Rhs>)> {};
77

88
template <class Lhs, class Rhs>
9-
struct lax_v1::gt_m : auto_t<(value_of_v<Lhs>> value_of_v<Rhs>)> {};
9+
struct lax_v1::gt_m : auto_t<(value_of_v<Lhs> > value_of_v<Rhs>)> {};
1010

1111
template <class Lhs, class Rhs>
1212
struct lax_v1::gte_m : auto_t<(value_of_v<Lhs> >= value_of_v<Rhs>)> {};

0 commit comments

Comments
 (0)