mirror of
https://github.com/boostorg/bind.git
synced 2026-04-17 07:06:05 +02:00
Compare commits
13 Commits
boost-1.87
...
develop
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8cc29fc19d | ||
|
|
ef788bb6e2 | ||
|
|
6b861090ba | ||
|
|
e4b7954bf6 | ||
|
|
cd65e603a1 | ||
|
|
f6abee248f | ||
|
|
90caab61f2 | ||
|
|
a541a8d5c1 | ||
|
|
e027093c53 | ||
|
|
fac72450f2 | ||
|
|
ac4c6f7c7a | ||
|
|
6d11c8931c | ||
|
|
71393b0d28 |
@@ -34,7 +34,6 @@ local linux_pipeline(name, image, environment, packages = "", sources = [], arch
|
|||||||
'set -e',
|
'set -e',
|
||||||
'uname -a',
|
'uname -a',
|
||||||
'echo $DRONE_STAGE_MACHINE',
|
'echo $DRONE_STAGE_MACHINE',
|
||||||
'wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add -',
|
|
||||||
] +
|
] +
|
||||||
(if sources != [] then [ ('apt-add-repository "' + source + '"') for source in sources ] else []) +
|
(if sources != [] then [ ('apt-add-repository "' + source + '"') for source in sources ] else []) +
|
||||||
(if packages != "" then [ 'apt-get update', 'apt-get -y install ' + packages ] else []) +
|
(if packages != "" then [ 'apt-get update', 'apt-get -y install ' + packages ] else []) +
|
||||||
@@ -186,22 +185,22 @@ local windows_pipeline(name, image, environment, arch = "amd64") =
|
|||||||
),
|
),
|
||||||
|
|
||||||
linux_pipeline(
|
linux_pipeline(
|
||||||
"Linux 23.04 GCC 13 32 ASAN",
|
"Linux 24.04 GCC 13 32 ASAN",
|
||||||
"cppalliance/droneubuntu2304:1",
|
"cppalliance/droneubuntu2404:1",
|
||||||
{ TOOLSET: 'gcc', COMPILER: 'g++-13', CXXSTD: '11,14,17,20,2b', ADDRMD: '32' } + asan,
|
{ TOOLSET: 'gcc', COMPILER: 'g++-13', CXXSTD: '11,14,17,20,2b', ADDRMD: '32' } + asan,
|
||||||
"g++-13-multilib",
|
"g++-13-multilib",
|
||||||
),
|
),
|
||||||
|
|
||||||
linux_pipeline(
|
linux_pipeline(
|
||||||
"Linux 23.04 GCC 13 32 UBSAN",
|
"Linux 24.04 GCC 13 32 UBSAN",
|
||||||
"cppalliance/droneubuntu2304:1",
|
"cppalliance/droneubuntu2404:1",
|
||||||
{ TOOLSET: 'gcc', COMPILER: 'g++-13', CXXSTD: '11,14,17,20,2b', ADDRMD: '32' } + ubsan,
|
{ TOOLSET: 'gcc', COMPILER: 'g++-13', CXXSTD: '11,14,17,20,2b', ADDRMD: '32' } + ubsan,
|
||||||
"g++-13-multilib",
|
"g++-13-multilib",
|
||||||
),
|
),
|
||||||
|
|
||||||
linux_pipeline(
|
linux_pipeline(
|
||||||
"Linux 23.04 GCC 13 64 UBSAN",
|
"Linux 24.04 GCC 13 64 UBSAN",
|
||||||
"cppalliance/droneubuntu2304:1",
|
"cppalliance/droneubuntu2404:1",
|
||||||
{ TOOLSET: 'gcc', COMPILER: 'g++-13', CXXSTD: '11,14,17,20,2b', ADDRMD: '64' } + ubsan,
|
{ TOOLSET: 'gcc', COMPILER: 'g++-13', CXXSTD: '11,14,17,20,2b', ADDRMD: '64' } + ubsan,
|
||||||
"g++-13-multilib",
|
"g++-13-multilib",
|
||||||
),
|
),
|
||||||
@@ -284,22 +283,22 @@ local windows_pipeline(name, image, environment, arch = "amd64") =
|
|||||||
),
|
),
|
||||||
|
|
||||||
linux_pipeline(
|
linux_pipeline(
|
||||||
"Linux 23.04 Clang 16",
|
"Linux 24.04 Clang 16",
|
||||||
"cppalliance/droneubuntu2304:1",
|
"cppalliance/droneubuntu2404:1",
|
||||||
{ TOOLSET: 'clang', COMPILER: 'clang++-16', CXXSTD: '11,14,17,20,2b' },
|
{ TOOLSET: 'clang', COMPILER: 'clang++-16', CXXSTD: '11,14,17,20,2b' },
|
||||||
"clang-16",
|
"clang-16",
|
||||||
),
|
),
|
||||||
|
|
||||||
linux_pipeline(
|
linux_pipeline(
|
||||||
"Linux 23.10 Clang 17 UBSAN",
|
"Linux 24.04 Clang 17 UBSAN",
|
||||||
"cppalliance/droneubuntu2310:1",
|
"cppalliance/droneubuntu2404:1",
|
||||||
{ TOOLSET: 'clang', COMPILER: 'clang++-17', CXXSTD: '11,14,17,20,2b' } + ubsan,
|
{ TOOLSET: 'clang', COMPILER: 'clang++-17', CXXSTD: '11,14,17,20,2b' } + ubsan,
|
||||||
"clang-17",
|
"clang-17",
|
||||||
),
|
),
|
||||||
|
|
||||||
linux_pipeline(
|
linux_pipeline(
|
||||||
"Linux 23.10 Clang 17 ASAN",
|
"Linux 24.04 Clang 17 ASAN",
|
||||||
"cppalliance/droneubuntu2310:1",
|
"cppalliance/droneubuntu2404:1",
|
||||||
{ TOOLSET: 'clang', COMPILER: 'clang++-17', CXXSTD: '11,14,17,20,2b' } + asan,
|
{ TOOLSET: 'clang', COMPILER: 'clang++-17', CXXSTD: '11,14,17,20,2b' } + asan,
|
||||||
"clang-17",
|
"clang-17",
|
||||||
),
|
),
|
||||||
@@ -318,6 +317,20 @@ local windows_pipeline(name, image, environment, arch = "amd64") =
|
|||||||
"clang-18",
|
"clang-18",
|
||||||
),
|
),
|
||||||
|
|
||||||
|
linux_pipeline(
|
||||||
|
"Linux 24.04 Clang 19",
|
||||||
|
"cppalliance/droneubuntu2404:1",
|
||||||
|
{ TOOLSET: 'clang', COMPILER: 'clang++-19', CXXSTD: '11,14,17,20,2b' },
|
||||||
|
"clang-19",
|
||||||
|
),
|
||||||
|
|
||||||
|
linux_pipeline(
|
||||||
|
"Linux 24.04 Clang 20",
|
||||||
|
"cppalliance/droneubuntu2404:1",
|
||||||
|
{ TOOLSET: 'clang', COMPILER: 'clang++-20', CXXSTD: '11,14,17,20,23,2c' },
|
||||||
|
"clang-20",
|
||||||
|
),
|
||||||
|
|
||||||
macos_pipeline(
|
macos_pipeline(
|
||||||
"MacOS 10.15 Xcode 12.2 UBSAN",
|
"MacOS 10.15 Xcode 12.2 UBSAN",
|
||||||
{ TOOLSET: 'clang', COMPILER: 'clang++', CXXSTD: '11,14,1z' } + ubsan,
|
{ TOOLSET: 'clang', COMPILER: 'clang++', CXXSTD: '11,14,1z' } + ubsan,
|
||||||
@@ -363,4 +376,10 @@ local windows_pipeline(name, image, environment, arch = "amd64") =
|
|||||||
"cppalliance/dronevs2022:1",
|
"cppalliance/dronevs2022:1",
|
||||||
{ TOOLSET: 'msvc-14.3', CXXSTD: '14,17,20,latest' },
|
{ TOOLSET: 'msvc-14.3', CXXSTD: '14,17,20,latest' },
|
||||||
),
|
),
|
||||||
|
|
||||||
|
windows_pipeline(
|
||||||
|
"Windows VS2026 msvc-14.5",
|
||||||
|
"cppalliance/dronevs2026:1",
|
||||||
|
{ TOOLSET: 'msvc-14.5', CXXSTD: '14,17,20,latest' },
|
||||||
|
),
|
||||||
]
|
]
|
||||||
|
|||||||
121
.github/workflows/ci.yml
vendored
121
.github/workflows/ci.yml
vendored
@@ -34,18 +34,22 @@ jobs:
|
|||||||
install: g++-6
|
install: g++-6
|
||||||
- toolset: gcc-7
|
- toolset: gcc-7
|
||||||
cxxstd: "11,14,17"
|
cxxstd: "11,14,17"
|
||||||
os: ubuntu-20.04
|
container: ubuntu:20.04
|
||||||
|
os: ubuntu-latest
|
||||||
install: g++-7
|
install: g++-7
|
||||||
- toolset: gcc-8
|
- toolset: gcc-8
|
||||||
cxxstd: "11,14,17,2a"
|
cxxstd: "11,14,17,2a"
|
||||||
os: ubuntu-20.04
|
container: ubuntu:20.04
|
||||||
|
os: ubuntu-latest
|
||||||
install: g++-8
|
install: g++-8
|
||||||
- toolset: gcc-9
|
- toolset: gcc-9
|
||||||
cxxstd: "11,14,17,2a"
|
cxxstd: "11,14,17,2a"
|
||||||
os: ubuntu-20.04
|
container: ubuntu:20.04
|
||||||
|
os: ubuntu-latest
|
||||||
- toolset: gcc-10
|
- toolset: gcc-10
|
||||||
cxxstd: "11,14,17,2a"
|
cxxstd: "11,14,17,2a"
|
||||||
os: ubuntu-20.04
|
container: ubuntu:20.04
|
||||||
|
os: ubuntu-latest
|
||||||
install: g++-10
|
install: g++-10
|
||||||
- toolset: gcc-11
|
- toolset: gcc-11
|
||||||
cxxstd: "11,14,17,2a"
|
cxxstd: "11,14,17,2a"
|
||||||
@@ -56,7 +60,7 @@ jobs:
|
|||||||
install: g++-12
|
install: g++-12
|
||||||
- toolset: gcc-13
|
- toolset: gcc-13
|
||||||
cxxstd: "11,14,17,20,2b"
|
cxxstd: "11,14,17,20,2b"
|
||||||
container: ubuntu:23.04
|
container: ubuntu:24.04
|
||||||
os: ubuntu-latest
|
os: ubuntu-latest
|
||||||
install: g++-13
|
install: g++-13
|
||||||
- toolset: gcc-14
|
- toolset: gcc-14
|
||||||
@@ -85,37 +89,44 @@ jobs:
|
|||||||
- toolset: clang
|
- toolset: clang
|
||||||
compiler: clang++-6.0
|
compiler: clang++-6.0
|
||||||
cxxstd: "11,14,17"
|
cxxstd: "11,14,17"
|
||||||
os: ubuntu-20.04
|
container: ubuntu:20.04
|
||||||
|
os: ubuntu-latest
|
||||||
install: clang-6.0
|
install: clang-6.0
|
||||||
- toolset: clang
|
- toolset: clang
|
||||||
compiler: clang++-7
|
compiler: clang++-7
|
||||||
cxxstd: "11,14,17"
|
cxxstd: "11,14,17"
|
||||||
os: ubuntu-20.04
|
container: ubuntu:20.04
|
||||||
|
os: ubuntu-latest
|
||||||
install: clang-7
|
install: clang-7
|
||||||
- toolset: clang
|
- toolset: clang
|
||||||
compiler: clang++-8
|
compiler: clang++-8
|
||||||
cxxstd: "11,14,17"
|
cxxstd: "11,14,17"
|
||||||
os: ubuntu-20.04
|
container: ubuntu:20.04
|
||||||
|
os: ubuntu-latest
|
||||||
install: clang-8
|
install: clang-8
|
||||||
- toolset: clang
|
- toolset: clang
|
||||||
compiler: clang++-9
|
compiler: clang++-9
|
||||||
cxxstd: "11,14,17,2a"
|
cxxstd: "11,14,17,2a"
|
||||||
os: ubuntu-20.04
|
container: ubuntu:20.04
|
||||||
|
os: ubuntu-latest
|
||||||
install: clang-9
|
install: clang-9
|
||||||
- toolset: clang
|
- toolset: clang
|
||||||
compiler: clang++-10
|
compiler: clang++-10
|
||||||
cxxstd: "11,14,17,2a"
|
cxxstd: "11,14,17,2a"
|
||||||
os: ubuntu-20.04
|
container: ubuntu:20.04
|
||||||
|
os: ubuntu-latest
|
||||||
install: clang-10
|
install: clang-10
|
||||||
- toolset: clang
|
- toolset: clang
|
||||||
compiler: clang++-11
|
compiler: clang++-11
|
||||||
cxxstd: "11,14,17,2a"
|
cxxstd: "11,14,17,2a"
|
||||||
os: ubuntu-20.04
|
container: ubuntu:20.04
|
||||||
|
os: ubuntu-latest
|
||||||
install: clang-11
|
install: clang-11
|
||||||
- toolset: clang
|
- toolset: clang
|
||||||
compiler: clang++-12
|
compiler: clang++-12
|
||||||
cxxstd: "11,14,17,2a"
|
cxxstd: "11,14,17,2a"
|
||||||
os: ubuntu-20.04
|
container: ubuntu:20.04
|
||||||
|
os: ubuntu-latest
|
||||||
install: clang-12
|
install: clang-12
|
||||||
- toolset: clang
|
- toolset: clang
|
||||||
compiler: clang++-13
|
compiler: clang++-13
|
||||||
@@ -138,13 +149,13 @@ jobs:
|
|||||||
- toolset: clang
|
- toolset: clang
|
||||||
compiler: clang++-16
|
compiler: clang++-16
|
||||||
cxxstd: "11,14,17,20,2b"
|
cxxstd: "11,14,17,20,2b"
|
||||||
container: ubuntu:23.04
|
container: ubuntu:24.04
|
||||||
os: ubuntu-latest
|
os: ubuntu-latest
|
||||||
install: clang-16
|
install: clang-16
|
||||||
- toolset: clang
|
- toolset: clang
|
||||||
compiler: clang++-17
|
compiler: clang++-17
|
||||||
cxxstd: "11,14,17,20,2b"
|
cxxstd: "11,14,17,20,2b"
|
||||||
container: ubuntu:23.10
|
container: ubuntu:24.04
|
||||||
os: ubuntu-latest
|
os: ubuntu-latest
|
||||||
install: clang-17
|
install: clang-17
|
||||||
- toolset: clang
|
- toolset: clang
|
||||||
@@ -154,34 +165,54 @@ jobs:
|
|||||||
os: ubuntu-latest
|
os: ubuntu-latest
|
||||||
install: clang-18
|
install: clang-18
|
||||||
- toolset: clang
|
- toolset: clang
|
||||||
|
compiler: clang++-19
|
||||||
cxxstd: "11,14,17,20,2b"
|
cxxstd: "11,14,17,20,2b"
|
||||||
os: macos-12
|
container: ubuntu:24.04
|
||||||
|
os: ubuntu-latest
|
||||||
|
install: clang-19
|
||||||
- toolset: clang
|
- toolset: clang
|
||||||
cxxstd: "11,14,17,20,2b"
|
compiler: clang++-20
|
||||||
os: macos-13
|
cxxstd: "11,14,17,20,23,2c"
|
||||||
|
container: ubuntu:24.04
|
||||||
|
os: ubuntu-latest
|
||||||
|
install: clang-20
|
||||||
- toolset: clang
|
- toolset: clang
|
||||||
cxxstd: "11,14,17,20,2b"
|
cxxstd: "11,14,17,20,2b"
|
||||||
os: macos-14
|
os: macos-14
|
||||||
|
- toolset: clang
|
||||||
|
cxxstd: "11,14,17,20,23,2c"
|
||||||
|
os: macos-15
|
||||||
|
- toolset: clang
|
||||||
|
cxxstd: "11,14,17,20,23,2c"
|
||||||
|
os: macos-26
|
||||||
|
|
||||||
runs-on: ${{matrix.os}}
|
runs-on: ${{matrix.os}}
|
||||||
container: ${{matrix.container}}
|
|
||||||
|
container:
|
||||||
|
image: ${{matrix.container}}
|
||||||
|
volumes:
|
||||||
|
- /node20217:/node20217:rw,rshared
|
||||||
|
- ${{ startsWith(matrix.container, 'ubuntu:1') && '/node20217:/__e/node20:ro,rshared' || ' ' }}
|
||||||
|
|
||||||
defaults:
|
defaults:
|
||||||
run:
|
run:
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Enable Node 16
|
|
||||||
run: |
|
|
||||||
echo "ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION=true" >> $GITHUB_ENV
|
|
||||||
|
|
||||||
- uses: actions/checkout@v3
|
|
||||||
|
|
||||||
- name: Setup container environment
|
- name: Setup container environment
|
||||||
if: matrix.container
|
if: matrix.container
|
||||||
run: |
|
run: |
|
||||||
apt-get update
|
apt-get update
|
||||||
apt-get -y install sudo python3 git g++
|
apt-get -y install sudo python3 git g++ curl xz-utils
|
||||||
|
|
||||||
|
- name: Install nodejs20glibc2.17
|
||||||
|
if: ${{ startsWith( matrix.container, 'ubuntu:1' ) }}
|
||||||
|
run: |
|
||||||
|
curl -LO https://archives.boost.io/misc/node/node-v20.9.0-linux-x64-glibc-217.tar.xz
|
||||||
|
tar -xf node-v20.9.0-linux-x64-glibc-217.tar.xz --strip-components 1 -C /node20217
|
||||||
|
ldd /__e/node20/bin/node
|
||||||
|
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Install packages
|
- name: Install packages
|
||||||
if: matrix.install
|
if: matrix.install
|
||||||
@@ -226,14 +257,6 @@ jobs:
|
|||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
- toolset: msvc-14.0
|
|
||||||
cxxstd: "14,latest"
|
|
||||||
addrmd: 32,64
|
|
||||||
os: windows-2019
|
|
||||||
- toolset: msvc-14.2
|
|
||||||
cxxstd: "14,17,20,latest"
|
|
||||||
addrmd: 32,64
|
|
||||||
os: windows-2019
|
|
||||||
- toolset: msvc-14.3
|
- toolset: msvc-14.3
|
||||||
cxxstd: "14,17,20,latest"
|
cxxstd: "14,17,20,latest"
|
||||||
addrmd: 32,64
|
addrmd: 32,64
|
||||||
@@ -245,7 +268,7 @@ jobs:
|
|||||||
- toolset: gcc
|
- toolset: gcc
|
||||||
cxxstd: "11,14,17,2a"
|
cxxstd: "11,14,17,2a"
|
||||||
addrmd: 64
|
addrmd: 64
|
||||||
os: windows-2019
|
os: windows-2022
|
||||||
|
|
||||||
runs-on: ${{matrix.os}}
|
runs-on: ${{matrix.os}}
|
||||||
|
|
||||||
@@ -285,11 +308,8 @@ jobs:
|
|||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
- os: ubuntu-20.04
|
- os: ubuntu-latest
|
||||||
- os: ubuntu-22.04
|
- os: macos-latest
|
||||||
- os: macos-12
|
|
||||||
- os: macos-13
|
|
||||||
- os: macos-14
|
|
||||||
|
|
||||||
runs-on: ${{matrix.os}}
|
runs-on: ${{matrix.os}}
|
||||||
|
|
||||||
@@ -333,11 +353,8 @@ jobs:
|
|||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
- os: ubuntu-20.04
|
- os: ubuntu-latest
|
||||||
- os: ubuntu-22.04
|
- os: macos-latest
|
||||||
- os: macos-12
|
|
||||||
- os: macos-13
|
|
||||||
- os: macos-14
|
|
||||||
|
|
||||||
runs-on: ${{matrix.os}}
|
runs-on: ${{matrix.os}}
|
||||||
|
|
||||||
@@ -391,11 +408,8 @@ jobs:
|
|||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
- os: ubuntu-20.04
|
- os: ubuntu-latest
|
||||||
- os: ubuntu-22.04
|
- os: macos-latest
|
||||||
- os: macos-12
|
|
||||||
- os: macos-13
|
|
||||||
- os: macos-14
|
|
||||||
|
|
||||||
runs-on: ${{matrix.os}}
|
runs-on: ${{matrix.os}}
|
||||||
|
|
||||||
@@ -447,8 +461,7 @@ jobs:
|
|||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
- os: windows-2019
|
- os: windows-latest
|
||||||
- os: windows-2022
|
|
||||||
|
|
||||||
runs-on: ${{matrix.os}}
|
runs-on: ${{matrix.os}}
|
||||||
|
|
||||||
@@ -496,8 +509,7 @@ jobs:
|
|||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
- os: windows-2019
|
- os: windows-latest
|
||||||
- os: windows-2022
|
|
||||||
|
|
||||||
runs-on: ${{matrix.os}}
|
runs-on: ${{matrix.os}}
|
||||||
|
|
||||||
@@ -563,8 +575,7 @@ jobs:
|
|||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
- os: windows-2019
|
- os: windows-latest
|
||||||
- os: windows-2022
|
|
||||||
|
|
||||||
runs-on: ${{matrix.os}}
|
runs-on: ${{matrix.os}}
|
||||||
|
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ branches:
|
|||||||
environment:
|
environment:
|
||||||
matrix:
|
matrix:
|
||||||
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
|
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
|
||||||
TOOLSET: msvc-12.0
|
TOOLSET: msvc-12.0,msvc-14.0
|
||||||
ADDRMD: 32,64
|
ADDRMD: 32,64
|
||||||
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
|
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
|
||||||
TOOLSET: msvc-14.1,clang-win
|
TOOLSET: msvc-14.1,clang-win
|
||||||
|
|||||||
@@ -179,7 +179,7 @@ public:
|
|||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
typedef R (T::*Pm);
|
typedef R T::*Pm;
|
||||||
Pm pm_;
|
Pm pm_;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|||||||
@@ -1,31 +0,0 @@
|
|||||||
#ifndef BOOST_IS_PLACEHOLDER_HPP_INCLUDED
|
|
||||||
#define BOOST_IS_PLACEHOLDER_HPP_INCLUDED
|
|
||||||
|
|
||||||
// MS compatible compilers support #pragma once
|
|
||||||
|
|
||||||
#if defined( _MSC_VER ) && ( _MSC_VER >= 1020 )
|
|
||||||
# pragma once
|
|
||||||
#endif
|
|
||||||
|
|
||||||
|
|
||||||
// is_placeholder.hpp - TR1 is_placeholder metafunction
|
|
||||||
//
|
|
||||||
// Copyright (c) 2006 Peter Dimov
|
|
||||||
//
|
|
||||||
// Distributed under the Boost Software License, Version 1.0.
|
|
||||||
//
|
|
||||||
// See accompanying file LICENSE_1_0.txt or copy at
|
|
||||||
// http://www.boost.org/LICENSE_1_0.txt
|
|
||||||
|
|
||||||
|
|
||||||
namespace boost
|
|
||||||
{
|
|
||||||
|
|
||||||
template< class T > struct is_placeholder
|
|
||||||
{
|
|
||||||
enum _vt { value = 0 };
|
|
||||||
};
|
|
||||||
|
|
||||||
} // namespace boost
|
|
||||||
|
|
||||||
#endif // #ifndef BOOST_IS_PLACEHOLDER_HPP_INCLUDED
|
|
||||||
@@ -46,7 +46,8 @@ run bind_not_test.cpp ;
|
|||||||
run bind_rel_test.cpp ;
|
run bind_rel_test.cpp ;
|
||||||
run bind_function_test.cpp ;
|
run bind_function_test.cpp ;
|
||||||
run bind_lookup_problem_test.cpp ;
|
run bind_lookup_problem_test.cpp ;
|
||||||
run bind_rv_sp_test.cpp ;
|
run bind_rv_sp_test.cpp
|
||||||
|
: : : <toolset>msvc-12.0:<build>no ;
|
||||||
compile bind_unary_addr.cpp ;
|
compile bind_unary_addr.cpp ;
|
||||||
run bind_dm3_test.cpp ;
|
run bind_dm3_test.cpp ;
|
||||||
run bind_visit_test.cpp ;
|
run bind_visit_test.cpp ;
|
||||||
@@ -56,12 +57,17 @@ run bind_and_or_test.cpp ;
|
|||||||
run bind_void_test.cpp ;
|
run bind_void_test.cpp ;
|
||||||
run bind_void_dm_test.cpp ;
|
run bind_void_dm_test.cpp ;
|
||||||
run bind_void_mf_test.cpp ;
|
run bind_void_mf_test.cpp ;
|
||||||
run mem_fn_test.cpp ;
|
run mem_fn_test.cpp
|
||||||
run mem_fn_void_test.cpp ;
|
: : : <toolset>msvc-12.0:<build>no ;
|
||||||
run mem_fn_derived_test.cpp ;
|
run mem_fn_void_test.cpp
|
||||||
|
: : : <toolset>msvc-12.0:<build>no ;
|
||||||
|
run mem_fn_derived_test.cpp
|
||||||
|
: : : <toolset>msvc-12.0:<build>no ;
|
||||||
run mem_fn_eq_test.cpp ;
|
run mem_fn_eq_test.cpp ;
|
||||||
run mem_fn_dm_test.cpp ;
|
run mem_fn_dm_test.cpp
|
||||||
run mem_fn_rv_test.cpp ;
|
: : : <toolset>msvc-12.0:<build>no ;
|
||||||
|
run mem_fn_rv_test.cpp
|
||||||
|
: : : <toolset>msvc-12.0:<build>no ;
|
||||||
run ref_fn_test.cpp ;
|
run ref_fn_test.cpp ;
|
||||||
run bind_fnobj2_test.cpp ;
|
run bind_fnobj2_test.cpp ;
|
||||||
run bind_fn2_test.cpp ;
|
run bind_fn2_test.cpp ;
|
||||||
@@ -69,7 +75,8 @@ run bind_mf2_test.cpp ;
|
|||||||
run bind_eq2_test.cpp ;
|
run bind_eq2_test.cpp ;
|
||||||
run mem_fn_ref_test.cpp ;
|
run mem_fn_ref_test.cpp ;
|
||||||
run bind_ref_test.cpp ;
|
run bind_ref_test.cpp ;
|
||||||
run bind_eq3_test.cpp ;
|
run bind_eq3_test.cpp
|
||||||
|
: : : <toolset>msvc-12.0:<build>no ;
|
||||||
run protect_test.cpp ;
|
run protect_test.cpp ;
|
||||||
run mem_fn_unary_addr_test.cpp ;
|
run mem_fn_unary_addr_test.cpp ;
|
||||||
run bind_function2_test.cpp ;
|
run bind_function2_test.cpp ;
|
||||||
@@ -80,7 +87,8 @@ run placeholder_const_ref_test.cpp ;
|
|||||||
run bind_function_ap_test.cpp ;
|
run bind_function_ap_test.cpp ;
|
||||||
run bind_type_test.cpp ;
|
run bind_type_test.cpp ;
|
||||||
run bind_unique_ptr_test.cpp ;
|
run bind_unique_ptr_test.cpp ;
|
||||||
run bind_nested_rv_test.cpp ;
|
run bind_nested_rv_test.cpp
|
||||||
|
: : : <toolset>gcc-4.7:<build>no <toolset>msvc-12.0:<build>no ;
|
||||||
compile arg_copy_test.cpp ;
|
compile arg_copy_test.cpp ;
|
||||||
compile-fail arg_copy_fail.cpp
|
compile-fail arg_copy_fail.cpp
|
||||||
: <warnings>off ;
|
: <warnings>off ;
|
||||||
@@ -90,13 +98,17 @@ run bind_stdcall_test.cpp ;
|
|||||||
run bind_cdecl_mf_test.cpp ;
|
run bind_cdecl_mf_test.cpp ;
|
||||||
run bind_fastcall_mf_test.cpp ;
|
run bind_fastcall_mf_test.cpp ;
|
||||||
run bind_stdcall_mf_test.cpp ;
|
run bind_stdcall_mf_test.cpp ;
|
||||||
run mem_fn_cdecl_test.cpp ;
|
run mem_fn_cdecl_test.cpp
|
||||||
run mem_fn_fastcall_test.cpp ;
|
: : : <toolset>msvc-12.0:<build>no ;
|
||||||
run mem_fn_stdcall_test.cpp ;
|
run mem_fn_fastcall_test.cpp
|
||||||
|
: : : <toolset>msvc-12.0:<build>no ;
|
||||||
|
run mem_fn_stdcall_test.cpp
|
||||||
|
: : : <toolset>msvc-12.0:<build>no ;
|
||||||
run bind_noexcept_test.cpp ;
|
run bind_noexcept_test.cpp ;
|
||||||
run bind_noexcept_mf_test.cpp ;
|
run bind_noexcept_mf_test.cpp ;
|
||||||
run global_placeholders.cpp ;
|
run global_placeholders.cpp ;
|
||||||
run mem_fn_noexcept_test.cpp ;
|
run mem_fn_noexcept_test.cpp
|
||||||
|
: : : <toolset>msvc-12.0:<build>no ;
|
||||||
run bind_cpp20_test.cpp ;
|
run bind_cpp20_test.cpp ;
|
||||||
run protect_test2.cpp ;
|
run protect_test2.cpp ;
|
||||||
run protect_cpp20_test.cpp ;
|
run protect_cpp20_test.cpp ;
|
||||||
|
|||||||
@@ -10,7 +10,6 @@ add_subdirectory(../.. boostorg/bind)
|
|||||||
add_subdirectory(../../../assert boostorg/assert)
|
add_subdirectory(../../../assert boostorg/assert)
|
||||||
add_subdirectory(../../../config boostorg/config)
|
add_subdirectory(../../../config boostorg/config)
|
||||||
add_subdirectory(../../../core boostorg/core)
|
add_subdirectory(../../../core boostorg/core)
|
||||||
add_subdirectory(../../../static_assert boostorg/static_assert)
|
|
||||||
add_subdirectory(../../../throw_exception boostorg/throw_exception)
|
add_subdirectory(../../../throw_exception boostorg/throw_exception)
|
||||||
|
|
||||||
add_executable(quick ../quick.cpp)
|
add_executable(quick ../quick.cpp)
|
||||||
|
|||||||
Reference in New Issue
Block a user