Sergey

Results 38 comments of Sergey

v0.9.39 seems to be working, but VSIX file names are swapped. VsChromium-0.9.39.vsix is for VS2022, VsChromium-Pre-VS2022-0.9.39.vsix is for VS2019.

> Why do we want curl to return "OK" for this situation? You ask for a range transfer of a specific URL and the server cannot deliver that. If a...

libcurl is not doing its job if it returns `CURLE_RANGE_ERROR` in case of other than 100-299 codes. 1. `CURLOPT_USERNAME` and `CURLOPT_PASSWORD` can't be used as supposed in case of ranged...

GitHub log before with `GTEST_COLOR: 1` ![image](https://user-images.githubusercontent.com/18064360/199829331-36cc44c7-e221-4756-9b9c-aceecc728a5e.png) GitHub log after with `GTEST_COLOR: ansi` ![image](https://user-images.githubusercontent.com/18064360/199829663-b1a3771b-9800-4c8c-8b41-0c5ebef28445.png)

> Instead of adding an API for forcing ANSI, could we detect whether the output terminal supports it or not? For example, by updating the ifndef around it, checking some...

> I believe #3049 fixes this problem without introducing any options. Unfortunately it does not fix the coloring issues. * `gtest_host.exe --gtest_help --gtest_color=yes > out.txt` * `gtest_host.exe --gtest_help --gtest_color=yes |...

I don't think it is worth to be an exception in C.21. Such the copy-and-swap idiom should be avoided: it performs copy and swap for lvalues and move and swap...

If `T::T(T&&)` is missing, and `std::move(t)` is passed, then `T other` is copy constructed: possible 2x memory consumption and unexpected non empty state of `t` observed after the assignment expression.

Yes, I can, maybe later today.

> The **Linux / mbedtls** job fails here. Was that just a temporary glitch or is this PR making it fail? I don't know, it looked so. The first commit...