[libcxx-commits] [libcxx] [libc++] Implements the new version header generator. (PR #97847)

Louis Dionne via libcxx-commits libcxx-commits at lists.llvm.org
Tue Jul 30 09:30:27 PDT 2024


================
@@ -2060,12 +2109,106 @@ def implemented_ftms(self) -> Dict[str, Dict[str, Any]]:
 
         return get_ftms(self.__data, self.std_dialects, True)
 
+    @functools.cached_property
+    def ftm_meta_data(self) -> Dict[str, Dict[str, Any]]:
----------------
ldionne wrote:

```suggestion
    def ftm_metadata(self) -> Dict[str, Dict[str, Any]]:
```

Metadata is generally spelled as a single word, I think?

https://github.com/llvm/llvm-project/pull/97847


More information about the libcxx-commits mailing list