Skip to content

Commit

Permalink
chore: bump version to 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
zhihaoy committed Dec 7, 2022
1 parent 16fdff8 commit 37660ad
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ elseif(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CXX_FLAGS)
message(WARNING "No CMAKE_BUILD_TYPE is selected")
endif()

project(nontype_functional VERSION 1.0.0 LANGUAGES CXX)
project(nontype_functional VERSION 1.0.1 LANGUAGES CXX)

if(NOT DEFINED PROJECT_IS_TOP_LEVEL)
if(CMAKE_PROJECT_NAME STREQUAL PROJECT_NAME)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ cppreference page for [`std::function`](https://en.cppreference.com/w/cpp/utilit
<br/>
cppreference page for [`std::move_only_function`](https://en.cppreference.com/w/cpp/utility/functional/move_only_function)
<br/>
[`std::function_ref`](https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2022/p0792r12.html#Wording) specification
[`std::function_ref`](https://wg21.link/p0792r12#Wording) specification


[^1]: Except for `std::function`'s `target()` member function, which is unimplemented because it requires RTTI.
2 changes: 1 addition & 1 deletion tests/function_ref/test_call_pattern.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ suite call_pattern = []
given("a signature that takes parameter by value") =
[]<template<class> class C, class T>(C<T> ty)
{
#if !defined(_MSC_VER) || _MSC_VER != 1933
#if !defined(_MSC_VER) || (_MSC_VER != 1933 && _MSC_VER != 1934)
boost::ut::log << ty;

T fr = make_call;
Expand Down

0 comments on commit 37660ad

Please sign in to comment.