Valentyn Shtronda

Results 9 comments of Valentyn Shtronda

As an alternative, consider splitting archives: * sources only * documentation only * tests only * built binaries for specific platform (this seems already done) Most users need just the...

+1 Really missing it.

Upvoted **execution** issue with GCC-4.4.7. Minimum version of GCC that Boost supports is 4.4.7. I wanted to verify one thing with GCC-4.4.7 on Compiler Explorer but got: ``` ASM generation...

By "upvoted" I meant thumbs-up on this issue. I didn't try to link with Boost on CE, just wanted to see if oldest compiler (among those that Boost supports) is...

I also tried Clang-3.0 (for the same purpose) and even compilation with it does not work. Since this issue is about execution, you might want to reopen #1557 to resolve...

@mattgodbolt No need to create new ticket because I did not try to use Boost on CE :) English is not my native language, so I probably was unclear. I...

The same issue for me but not sure that it's related to soft links in my case. In my case, language server crashes, I see two popup messages ("Language server...

You are correct if we are talking about exact numbers, but when analyzing an algorithm complexity and memory requirements only the biggest term is of interest. Look for Big O...

> Also, doesn't `O(n^2/2)` simplify into `O(n^2)` in Big-O (since the `/2` part is a constant)? You are correct here too. Maybe due to this reason the author didn't use...