Skip to content

Commit 8af4499

Browse files
authored
Merge pull request #1333 from boostorg/circular
Remove circular dependency on Multiprecision and add CI checks for such occurrences
2 parents 6ee28f2 + 0321de7 commit 8af4499

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
run: cp -r $GITHUB_WORKSPACE/* libs/math
5959
working-directory: ../boost-root
6060
- name: Install deps
61-
run: python tools/boostdep/depinst/depinst.py math -I example -I tools
61+
run: python tools/boostdep/depinst/depinst.py math -C -I example -I tools
6262
working-directory: ../boost-root
6363
- name: Bootstrap
6464
run: ./bootstrap.sh
@@ -116,7 +116,7 @@ jobs:
116116
run: cp -r $GITHUB_WORKSPACE/* libs/math
117117
working-directory: ../boost-root
118118
- name: Install deps
119-
run: python tools/boostdep/depinst/depinst.py math -I example -I tools
119+
run: python tools/boostdep/depinst/depinst.py math -C -I example -I tools
120120
working-directory: ../boost-root
121121
- name: Bootstrap
122122
run: ./bootstrap.sh
@@ -157,7 +157,7 @@ jobs:
157157
run: cp -r $GITHUB_WORKSPACE/* libs/math
158158
working-directory: ../boost-root
159159
- name: Install deps
160-
run: python tools/boostdep/depinst/depinst.py math -I example -I tools
160+
run: python tools/boostdep/depinst/depinst.py math -C -I example -I tools
161161
working-directory: ../boost-root
162162
- name: Bootstrap
163163
run: ./bootstrap.sh
@@ -200,7 +200,7 @@ jobs:
200200
run: xcopy /s /e /q %GITHUB_WORKSPACE% libs\math
201201
working-directory: ../boost-root
202202
- name: Install deps
203-
run: python tools/boostdep/depinst/depinst.py math -I example -I tools
203+
run: python tools/boostdep/depinst/depinst.py math -C -I example -I tools
204204
working-directory: ../boost-root
205205
- name: Bootstrap
206206
run: bootstrap
@@ -243,7 +243,7 @@ jobs:
243243
run: xcopy /s /e /q %GITHUB_WORKSPACE% libs\math
244244
working-directory: ../boost-root
245245
- name: Install deps
246-
run: python tools/boostdep/depinst/depinst.py math -I example -I tools
246+
run: python tools/boostdep/depinst/depinst.py math -C -I example -I tools
247247
working-directory: ../boost-root
248248
- name: Bootstrap
249249
run: bootstrap
@@ -287,7 +287,7 @@ jobs:
287287
- name: Copy files
288288
run: C:\\tools\\cygwin\\bin\\bash -l -c 'cd $(cygpath -u "$GITHUB_WORKSPACE") && cp -r * ../boost-root/libs/math'
289289
- name: Install deps
290-
run: C:\\tools\\cygwin\\bin\\bash -l -c 'cd $(cygpath -u "$GITHUB_WORKSPACE")/../boost-root && python tools/boostdep/depinst/depinst.py math -I example -I tools'
290+
run: C:\\tools\\cygwin\\bin\\bash -l -c 'cd $(cygpath -u "$GITHUB_WORKSPACE")/../boost-root && python tools/boostdep/depinst/depinst.py math -C -I example -I tools'
291291
- name: Bootstrap
292292
run: C:\\tools\\cygwin\\bin\\bash -l -c 'cd $(cygpath -u "$GITHUB_WORKSPACE")/../boost-root && ./bootstrap.sh'
293293
- name: Generate headers
@@ -417,7 +417,7 @@ jobs:
417417
run: cp -r $GITHUB_WORKSPACE/* libs/math
418418
working-directory: ../boost-root
419419
- name: Install deps
420-
run: python tools/boostdep/depinst/depinst.py math -I example -I tools
420+
run: python tools/boostdep/depinst/depinst.py math -C -I example -I tools
421421
working-directory: ../boost-root
422422
- name: Bootstrap
423423
run: ./bootstrap.sh

include/boost/math/differentiation/detail/reverse_mode_autodiff_erf_overloads.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
#include <boost/math/differentiation/detail/reverse_mode_autodiff_utilities.hpp>
1818
#include <boost/math/special_functions/erf.hpp>
19-
#include <boost/multiprecision/cpp_bin_float.hpp>
19+
2020
namespace boost {
2121
namespace math {
2222
namespace differentiation {

0 commit comments

Comments
 (0)