Bela Schaum

Results 44 issues of Bela Schaum

Sometimes declarations or usings have several definitions in the codebase. Currently, CodeCompass can not support multiple implementations in C++. Ex1: ```cpp namespace N { int a(); int a(int); } using...

Kind: Enhancement :star2:
Plugin: C++
Level: Moderate (2)

Currently, the channel iterators can be used only as output iterators. > Integrates well with STL algorithms. If I want to pipe two channels, there is no support for the...

Add [coi](https://github.com/gzuidhof/coi-serviceworker) lib to make `-pthreads` work in the GitHub live demo page.

When I want to use asio_dtls as a dependency (with [hunter](https://github.com/cpp-pm/hunter)) the cmake fails on install target, because it doesn't exist.

Query script Get sorted list ```sh git rev-list --objects --all | git cat-file --batch-check='%(objecttype) %(objectname) %(objectsize) %(rest)' | sed -n 's/^blob //p' | sort --numeric-sort --key=2 | cut -c 1-12,41-...

https://github.com/terryyin/translate-python/blob/48dd08dddeb734646ba5670841025ed6c4596b2d/translate/providers/libre.py#L19 In the line above the constructor doesn't pass the `from_lang` argument to the base provider.

The current implementation is not allow to use transparent comparator/hash operator functionality. ``` boost::bimap test; std::string stg; test.right.find(stg); // error ``` The compile error message is [the following](https://godbolt.org/z/1sKaWEM3x): ``` /opt/compiler-explorer/libs/boost_1_80_0/boost/bimap/container_adaptor/associative_container_adaptor.hpp:194:17:...

I want to use dynamic_bitset with boost::container::small_vector, but currently it is not possible because buffer type is not changeable. Other adapter containers like boost::container::flat_set allows to pass an "allocator or...

Before gcc9, if a template argument is an integral value, no compiler error/warning generated when the specified value is bigger than the integral value MAX. This leads the following runtime...