doc: Fix JSON Pointer example to use direct initialization

Changed the example code in the documentation from copy initialization
to direct initialization for `json::json_pointer`.
This prevents compilation errors caused by the constructor being explicit.
This commit is contained in:
kfwu 2024-09-25 19:49:48 +08:00
parent b36f4c477c
commit 371ee4bc26

View File

@ -42,7 +42,7 @@ Note `/` does not identify the root (i.e., the whole document), but an object en
JSON Pointers can be created from a string:
```cpp
json::json_pointer p = "/nested/one";
json::json_pointer p("/nested/one");
```
Furthermore, a user-defined string literal can be used to achieve the same result: