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
Copy file name to clipboardExpand all lines: docs/the-new-architecture/cxx-custom-types.md
+3-4Lines changed: 3 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -257,10 +257,10 @@ This works - but is quite complex.
257
257
[**Codegen**](pillars-codegen.md) for C++ Turbo Native Modules does support struct generators, so you can simplify the code above in `NativeSampleModule.h` to:
258
258
259
259
```cpp
260
-
using CustomType = NativeSampleModuleBaseCustomType<std::string, bool, std::optional<int32_t>>;
260
+
using CustomType = NativeSampleModuleCustomType<std::string, bool, std::optional<int32_t>>;
0 commit comments