Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions proposals/0929-legacy-architecture-removal.md
Original file line number Diff line number Diff line change
Expand Up @@ -286,12 +286,12 @@ The following symbols are due for removal:

### C++

In C++ we use the `RCT_FIT_RM_OLD_RUNTIME` macro to annotate classes that are due for removal.
In C++ we use the `RCT_REMOVE_LEGACY_ARCH` macro to annotate classes that are due for removal.

If a class or a symbol is wrapped inside a:

```c++
#ifndef RCT_FIT_RM_OLD_RUNTIME
#ifndef RCT_REMOVE_LEGACY_ARCH
...
#endif
```
Expand Down