[libcxx-commits] [PATCH] D112251: [libc++][doc] Fixes FeatureTestMacroTable.html.
Mark de Wever via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Thu Oct 21 11:11:19 PDT 2021
Mordante created this revision.
Herald added a subscriber: arichardson.
Mordante requested review of this revision.
Herald added a project: libc++.
Herald added a subscriber: libcxx-commits.
Herald added a reviewer: libc++.
`utils/generate_feature_test_macro_components.py` uses the wrong
indentation. `:name: feature-status-table :widths: auto` is rendered as
text instead of being used by Sphinx to render the table properly.
This fixes the identation in the souce and updates the generated output.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D112251
Files:
libcxx/docs/FeatureTestMacroTable.rst
libcxx/utils/generate_feature_test_macro_components.py
Index: libcxx/utils/generate_feature_test_macro_components.py
===================================================================
--- libcxx/utils/generate_feature_test_macro_components.py
+++ libcxx/utils/generate_feature_test_macro_components.py
@@ -1095,8 +1095,8 @@
======
.. table:: Current Status
- :name: feature-status-table
- :widths: auto
+ :name: feature-status-table
+ :widths: auto
{status_tables}
Index: libcxx/docs/FeatureTestMacroTable.rst
===================================================================
--- libcxx/docs/FeatureTestMacroTable.rst
+++ libcxx/docs/FeatureTestMacroTable.rst
@@ -18,8 +18,8 @@
======
.. table:: Current Status
- :name: feature-status-table
- :widths: auto
+ :name: feature-status-table
+ :widths: auto
================================================= =================
Macro Name Value
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D112251.381335.patch
Type: text/x-patch
Size: 928 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20211021/2fc7b7f1/attachment.bin>
More information about the libcxx-commits
mailing list