Results 49 issues of Takatoshi Kondo

Some tests fail on osx (el capitan) with valgrind 3.11.0. Without valgrind, no errors are detected. See also #524 and #525.

See: https://github.com/msgpack/msgpack-c/pull/339#issuecomment-131367798 ``` C++ #include struct no_def_con { no_def_con() = delete; no_def_con(int i) :i(i) {} int i; MSGPACK_DEFINE(i); }; namespace msgpack { MSGPACK_API_VERSION_NAMESPACE(MSGPACK_DEFAULT_API_NS) { namespace adaptor { template struct as...

I'm using BOOST_REQUIRE_NO_THROW() as follows: ```cpp #define BOOST_TEST_MAIN #include struct nc { nc(int v): v { v } {} nc() = delete; nc(nc const&) = delete; nc(nc&&) = default; int...

When I call `boost::asio::io_context::strand::running_in_this_thread()`, I got the following result. If the code that calls `running_in_this_thread()` is running in the same strand, then true is returned. Otherwise, false is returned **even...

number-allocator is using js-sdsl. js-sdsl has been updated to 4.1.3 that supports high performance bidirectional iterator. So number-allocator also update to use js-sdsl 4.1.3.

TypeScript definition of subscribe() has two functions. https://github.com/mqttjs/MQTT.js/blob/aa49aaf9856fe9f433005e850b490a96505add19/types/lib/client.d.ts#L165-L167 The type of the first parameter is string or string[]. The second parameter is opts. opts could have properties. e.g.)SubscriptionIdentifier https://github.com/mqttjs/MQTT.js/blob/aa49aaf9856fe9f433005e850b490a96505add19/types/lib/client.d.ts#L168-L171 The...

`topicAliasMaximum` for receiving is designed as setting by MqttClient option, not setting by CONNECT property. And it is automatically used as CONNECT property. However, the document said `topicAliasMaximum` is set...

When I use `boost::callable_traits::is_invocable` with `fu2::unique_function` on msvc v19.33 or older, I got C2248 (cannot access private member) error. When I replace boost::callable_traits::is_invocable with std::is_invocable (since C++17), then the error...

Just print the address of actual data. You can get outputs as follows: ``` (gdb) p multi_index_container $1 = boost::type_erasure::any data = 0x555555571f10 ``` If you know the acutual type,...

### Version of Beast - My local: - Boost 1.84.0, - Beast 351 - Godbolt - Boost 1.83.0 - Beast 347 ### Steps necessary to reproduce the problem Compile the...