Skip to content

Commit be9fba8

Browse files
authored
Merge pull request #58 from bemanproject/docs-update
update docs
2 parents 5340a03 + 852aed5 commit be9fba8

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

README.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,18 @@ making it easy to teach and learn,
2727
and the inplace storage guarantee makes it useful in environments in
2828
which dynamic memory allocations are undesired.
2929

30+
#### Note on implementation progress
31+
32+
Current implementation implements all public interfaces defined in the paper.
33+
However constexpr related functionalities are not tested and maybe broken.
34+
35+
There have been minor updates to the wording after the paper is accepted, notably [P3247](wg21.link/P3247).
36+
Which changes the requirements for constexpr support.
37+
This will likely be preceded with [P3074](wg21.link/P3074).
38+
These has not been implemented yet.
39+
40+
Contributions are welcome.
41+
3042
### Code example
3143

3244
```cpp
@@ -60,7 +72,7 @@ template <int Capacity> inplace_vector<int, Capacity> fibonacci_to(int num) {
6072
6173
### Compiler support
6274
63-
Building this repository requires **C++23** or later.
75+
Building this repository requires **C++20** or later.
6476
6577
### Dependencies
6678
@@ -74,7 +86,7 @@ TODO: tested platforms.
7486
7587
```text
7688
# Configure build
77-
$ cmake -S . -B build -DCMAKE_CXX_STANDARD=23
89+
$ cmake -S . -B build -DCMAKE_CXX_STANDARD=20
7890
-- The CXX compiler identification is GNU 11.4.0
7991
-- Detecting CXX compiler ABI info
8092
-- Detecting CXX compiler ABI info - done

0 commit comments

Comments
 (0)