We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83ccc62 commit a0cbe18Copy full SHA for a0cbe18
cppcon2025/cppcon_2025_slides.md
@@ -391,7 +391,7 @@ Player deserialize_Player(const json& j) {
391
```cpp
392
// Simplified snippet, members stores information about the class
393
// obtained via std::define_static_array(std::meta::nonstatic_data_members_of(^^T, ...))...
394
-simdjson::ondemand::object obj;
+ondemand::object obj;
395
396
template for (constexpr auto member : members) {
397
// These are compile-time constants
@@ -449,7 +449,7 @@ std::string json = simdjson::to_json(Meeting{
449
.is_recurring = true
450
});
451
452
-Meeting m = simdjson::from<Meeting>(json);
+Meeting m = simdjson::from(json);
453
```
454
455
---
0 commit comments