You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-[Binary formats (BSON, CBOR, MessagePack, UBJSON, and BJData)](#binary-formats-bson-cbor-messagepack-ubjson-and-bjdata)
42
+
-[Customers](#customers)
42
43
-[Supported compilers](#supported-compilers)
43
44
-[Integration](#integration)
44
45
-[CMake](#cmake)
@@ -1112,6 +1113,11 @@ binary.set_subtype(0x10);
1112
1113
auto cbor = json::to_msgpack(j); // 0xD5 (fixext2), 0x10, 0xCA, 0xFE
1113
1114
```
1114
1115
1116
+
## Customers
1117
+
1118
+
The library is used in multiple projects, applications, operating systems, etc. The list below is not exhaustive, but the result of an internet search. If you know further customers of the library, please let me know, see [contact](#contact).
Copy file name to clipboardExpand all lines: docs/mkdocs/docs/api/basic_json/get_ptr.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -37,7 +37,9 @@ Constant.
37
37
38
38
The pointer becomes invalid if the underlying JSON object changes.
39
39
40
-
Consider the following example code where the pointer `ptr` changes after the array is resized. As a result, reading or writing to `ptr` after the array change would be undefined behavior. The address of the first array element changes, because the underlying `std::vector` is resized after adding a fifth element.
40
+
Consider the following example code where the pointer `ptr` changes after the array is resized. As a result,
41
+
reading or writing to `ptr` after the array change would be undefined behavior. The address of the first array
42
+
element changes, because the underlying `std::vector` is resized after adding a fifth element.
0 commit comments