Ilya Popov

Results 13 issues of Ilya Popov

Cargo-oudated shows "1.2.1" as latest version for [bitflags](https://crates.io/crates/bitflags) crate, while in fact the latest version is "1.3.2". This is probably due to version "1.3.0" [being yanked](https://crates.io/crates/bitflags/versions). Example output: ``` Name...

In CmakeLists.txt, if OpenMP is found on the system, it is unconditionally enabled: https://github.com/ddemidov/amgcl/blob/c71ab45f911771c108b1842ea7cd11b62432bbf3/CMakeLists.txt#L60-L68 However, I may want to compile my application without OpenMP even though it is installed. Currently,...

In CMakeLists, boost is requires dependency: https://github.com/ddemidov/amgcl/blob/c71ab45f911771c108b1842ea7cd11b62432bbf3/CMakeLists.txt#L31-L35 although amgcl can works fine without boost with AMGCL_NO_BOOST preprocessor macro (without runtime interface). I can use amgcl by specifying include paths directly,...

**Describe the bug** In presence of a broken symlink, `directory_entry::refresh()` throws, while both `status()` and `symlink_status()` succeed. Under the same circumstances, `libstdc++` succeeds. **To Reproduce** ```cpp #ifndef USE_GHC_FILESYSTEM # include...

If the input file contains an `\input` macro with a non-existent file ```tex \input{non-existent.tex} ``` The error message is just: ``` Running TeX ... error: terminal input forbidden ``` It...

Arguably, the most important piece of information returned by curl_multi_info_read is which exactly easy handle if done. This information, unfortunately, is not included in `curl_massage`, which makes it almost impossible...

Suppose I want to fill a rectangle with some color. `FillRect` member function expects a color in surface's format. There is conversion function, [`SDL_MapRGB`](https://wiki.libsdl.org/SDL_MapRGB), but it expects [`SDL_PixelFormat*`](https://wiki.libsdl.org/SDL_PixelFormat). `Surface::GetFormat`, however,...

minor coveage extension

Jakt compiler is quite slow to compile. This slows down development of the language. Most of the time is spent in the Clang. Currently on my machine: ``` $ time...

The binary search section has the following > I also stole these lovely layout visualizations from some blog a long time ago, but I don’t remember the name of the...

See here: https://github.com/akrzemi1/static_string/blob/cf952d9852083eb608e20bd4ae525fc2822c4304/include/ak_toolkit/static_string.hpp#L132