-
For popular containers used in OI/ACM, specify whether each is supported.
"部分 STL 容器" much confuses new users.
-
Hi @lukasberbuer !
I would like to contribute to open62541pp with a simplified API proposal for reading and writing node values 😄 .
I set up some demo code, please take a look at https://github…
-
Our `lazy-socket` receiver class has an issue with it's internal receive buffer where it can smash heap after a realloc, because right now it's done with an almost raw buffer by calling `realloc()`.
…
-
I'm hoping that one of the containers that exists allows me to run something like:
```bash
docker run -v /host_path/to/scad-files:/src openscad/openscad openscad /src/file.scad -o /src/file.stl
`…
-
I am working with a library that uses `std::unordered_map` and `std::unordered_set` in its exported API. The library is compiled with VC 14.16. When an application compiled with 14.29 is linked to thi…
-
~~~c++
#include
struct S { int a, b; };
void f() {
int i{}; // warning
S s{}; // warning
std::vector vi; // FN
std::vector vs; // FN
}
~~~
https://godbolt.org/z/95xxG4exv
-
When I use lsp-ui-doc to read some docs of STL containers, it show like this:
[![2020-07-20-00-28.png](https://i.postimg.cc/GtDpbD9y/2020-07-20-00-28.png)](https://postimg.cc/8f1GHjRp)
I'm using …
-
### Iterators in STL have hierachy and more or less strict interface, which obliges to follow rules, which maybe not applicable for some containers(examples need to be provided in future)
**To prov…
-
Hi.
For std::array comparison I get:
REQUIRE( {?} == {?} )
I believe you support this for other containers. Can you add this when/if you have the time?
-
Do we want to support a `for_all()` interface that can operate on `const` containers? Right now containers have to be non-`const` to use `for_all`, and this is not always desirable (for example, when …