Fix the metadata in libraries.json

The main fix, here, is not stating that dynamic_bitset is a container.
It isn't (at least in the C++ meaning of the term), as specified in the
documentation.

I'm also taking over as a maintainer, so I added my email address.
This commit is contained in:
Gennaro Prota
2025-06-21 12:28:21 +02:00
parent e00b0048f9
commit 048a1cd3e5

View File

@@ -5,13 +5,13 @@
"Jeremy Siek",
"Chuck Allison"
],
"description": "The dynamic_bitset class represents a set of bits. It provides accesses to the value of individual bits via an operator[] and provides all of the bitwise operators that one can apply to builtin integers, such as operator& and operator<<. The number of bits in the set is specified at runtime via a parameter to the constructor of the dynamic_bitset.",
"description": "The dynamic_bitset template represents a set of bits. It provides access to the value of individual bits via operator[] and provides all of the bitwise operators that one can apply to builtin integers, such as operator& and operator<<. The number of bits in the set can change at runtime.",
"documentation": "dynamic_bitset.html",
"category": [
"Containers"
"Data structures"
],
"maintainers": [
"Jeremy Siek <jeremy.siek -at- gmail.com>"
"Gennaro Prota <firstName.lastName -at- gmail.com>"
],
"cxxstd": "11"
}