Skip to content

Commit 9d7cc3d

Browse files
committed
⬆️ 1.1.8
1 parent 8eb63a8 commit 9d7cc3d

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ configure_package_config_file(
177177

178178
write_basic_package_version_file(
179179
${CMAKE_CURRENT_BINARY_DIR}/smlConfigVersion.cmake
180-
VERSION 1.1.6
180+
VERSION 1.1.8
181181
COMPATIBILITY SameMajorVersion
182182
)
183183

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ DRMEMORY:=drmemory -light -batch -exit_code_if_errors 1 --
2626
GCOV:=-fprofile-arcs -ftest-coverage
2727
CLANG_FORMAT?=clang-format
2828
CLANG_TIDY?=clang-tidy
29-
PYTHON?=python2
29+
PYTHON?=python3
3030
MKDOCS?=mkdocs
3131
MKDOCS_THEME?=boost-modern
3232
MKDOCS_SITE?=site

include/boost/sml.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@
99
#if (__cplusplus < 201305L && _MSC_VER < 1900)
1010
#error "[Boost::ext].SML requires C++14 support (Clang-3.4+, GCC-5.1+, MSVC-2015+)"
1111
#else
12-
#define BOOST_SML_VERSION 1'1'6
12+
#define BOOST_SML_VERSION 1'1'8
1313
#define BOOST_SML_NAMESPACE_BEGIN \
1414
namespace boost { \
1515
inline namespace ext { \
1616
namespace sml { \
17-
inline namespace v1_1_6 {
17+
inline namespace v1_1_8 {
1818
#define BOOST_SML_NAMESPACE_END \
1919
} \
2020
} \
@@ -422,7 +422,7 @@ struct pool : pool_type<Ts>... {
422422
template <>
423423
struct pool<> {
424424
using boost_di_inject__ = type_list<>;
425-
constexpr pool() = default;
425+
pool() = default;
426426
template <class... Ts>
427427
constexpr explicit pool(Ts &&...) {}
428428
__BOOST_SML_ZERO_SIZE_ARRAY(byte);

0 commit comments

Comments
 (0)