Skip to content

Commit 00f2592

Browse files
committed
chore: fix MinGW builds
1 parent 2e85be8 commit 00f2592

3 files changed

Lines changed: 7 additions & 9 deletions

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -134,11 +134,11 @@ jobs:
134134
runs-on: "windows-2022"
135135
b2-toolset: "gcc"
136136
generator: "MinGW Makefiles"
137-
is-latest: false
137+
is-latest: true
138138
is-earliest: true
139-
name: "MinGW"
139+
name: "MinGW (shared)"
140140
shared: true
141-
build-type: "Release"
141+
build-type: "Debug"
142142
build-cmake: true
143143

144144
- compiler: "mingw"
@@ -148,9 +148,9 @@ jobs:
148148
runs-on: "windows-2022"
149149
b2-toolset: "gcc"
150150
generator: "MinGW Makefiles"
151-
is-latest: false
151+
is-latest: true
152152
is-earliest: true
153-
name: "MinGW"
153+
name: "MinGW (static)"
154154
shared: false
155155
build-type: "Release"
156156
build-cmake: true

include/boost/capy/polystore.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -620,10 +620,10 @@ class polystore
620620

621621
//------------------------------------------------
622622

623-
struct BOOST_SYMBOL_VISIBLE
623+
struct BOOST_CAPY_DECL
624624
polystore::any
625625
{
626-
BOOST_CAPY_DECL virtual ~any();
626+
virtual ~any() = default;
627627
virtual void start() = 0;
628628
virtual void stop() = 0;
629629
private:

src/polystore.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@
1313
namespace boost {
1414
namespace capy {
1515

16-
polystore::any::~any() = default;
17-
1816
polystore::
1917
~polystore()
2018
{

0 commit comments

Comments
 (0)