-
in `example/cpp20_intro_tls.cpp`, it does
```
conn->next_layer().set_verify_mode(asio::ssl::verify_peer);
conn->next_layer().set_verify_callback(verify_certificate);
```
before `async_exec`.
…
-
Modules in cpp20 are not there yet. Have tried with all latest gcc versions(11 and 12) built from source and have ran into all kinds of issues, especially when using templates and `variant`. See dd4d6…
-
Now the c++ 20 coroutine TS has been supported by visual studio 2017 and clang 5.0, would you please write some sample codes to show how to use the asio + cpp20_coroutine?
-
During compilation of HeterogeneousCore/AlpakaInterface module in CPP20 IBs [log](https://cmssdt.cern.ch/SDT/cgi-bin/buildlogs/el8_amd64_gcc12/CMSSW_14_1_CPP20_X_2024-02-26-1100/HeterogeneousCore/Alp…
-
`/usr/include/linux/fs.h` does this:
```
#define BLOCK_SIZE_BITS 10
#define BLOCK_SIZE (1
-
마지막 작업으로 literal integral 에 대한 시도까진 해봤지만, 영 맘에 들진 않음.
Literal String이 아무래도 제격인데 c++20 이 아니고서야 가능할진 잘 모르겠음.
* https://stackoverflow.com/questions/51195445/is-it-possible-to-use-a-string-literal-as-a…
-
As mentioned in #99, we need to clean up the build script such that building in Ubuntu and macOS, with different language, can be easily done.
Major goals include:
1. Insulate `brew` dependency on…
-
In strong typing a range-v3 view, I found its `sizeof` to not match my expectations. It turns out that both the strong type and its wrapped, sole data member view both inherit from `basic_view`, which…
-
I find myself always adding little string helper functions.
I think startsWith and endsWith will be added for cpp20.
does it make sense to add something like this to the core?
```c
//ofEndsWith
…
-
**Is your feature request related to a problem? Please describe.**
One reason to switch is `using enum SomeEnum` syntax for `switch` which shortens some of them by a lot. Not a big deal and any sort …