This revision was landed with ongoing or failed builds. This revision was automatically updated to reflect the committed changes. Closed by commit rGc73de2969162: [clang][doc] Mentions -Wno-reserved-module-identifiers (authored by Mordante).
Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D158523/new/ https://reviews.llvm.org/D158523 Files: clang/docs/StandardCPlusPlusModules.rst Index: clang/docs/StandardCPlusPlusModules.rst =================================================================== --- clang/docs/StandardCPlusPlusModules.rst +++ clang/docs/StandardCPlusPlusModules.rst @@ -313,18 +313,8 @@ __test // and so on ... -If you still want to use the reserved module names for any reason, currently you can add a special line marker -in the front of the module declaration like: - -.. code-block:: c++ - - # __LINE_NUMBER__ __FILE__ 1 3 - export module std; - -Here the `__LINE_NUMBER__` is the actual line number of the corresponding line. The `__FILE__` means the filename -of the translation unit. The `1` means the following is a new file. And `3` means this is a system header/file so -the certain warnings should be suppressed. You could find more details at: -https://gcc.gnu.org/onlinedocs/gcc-3.0.2/cpp_9.html. +If you still want to use the reserved module names for any reason, use +``-Wno-reserved-module-identifier`` to suppress the warning. How to specify the dependent BMIs ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Index: clang/docs/StandardCPlusPlusModules.rst =================================================================== --- clang/docs/StandardCPlusPlusModules.rst +++ clang/docs/StandardCPlusPlusModules.rst @@ -313,18 +313,8 @@ __test // and so on ... -If you still want to use the reserved module names for any reason, currently you can add a special line marker -in the front of the module declaration like: - -.. code-block:: c++ - - # __LINE_NUMBER__ __FILE__ 1 3 - export module std; - -Here the `__LINE_NUMBER__` is the actual line number of the corresponding line. The `__FILE__` means the filename -of the translation unit. The `1` means the following is a new file. And `3` means this is a system header/file so -the certain warnings should be suppressed. You could find more details at: -https://gcc.gnu.org/onlinedocs/gcc-3.0.2/cpp_9.html. +If you still want to use the reserved module names for any reason, use +``-Wno-reserved-module-identifier`` to suppress the warning. How to specify the dependent BMIs ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
_______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits