From 024c5e8e9af74bcce799968de688c76703c96ddb Mon Sep 17 00:00:00 2001 From: Mateusz Pusz Date: Sat, 17 Apr 2021 12:06:33 +0200 Subject: [PATCH] docs: Got rid of IWYU pragmas from `hello_units` --- README.md | 6 +++--- docs/quick_start.rst | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 070a671e..ccaf92f5 100644 --- a/README.md +++ b/README.md @@ -72,9 +72,9 @@ the below example for a quick preview of basic library features: #include #include -#include // IWYU pragma: keep +#include #include -#include // IWYU pragma: keep +#include #include #include #include @@ -115,4 +115,4 @@ int main() } ``` -_Try it on the [Compiler Explorer](https://godbolt.org/z/WP39WvE6M)._ +_Try it on the [Compiler Explorer](https://godbolt.org/z/jKnPPPEx6)._ diff --git a/docs/quick_start.rst b/docs/quick_start.rst index 66351cf1..cced0d9b 100644 --- a/docs/quick_start.rst +++ b/docs/quick_start.rst @@ -48,9 +48,9 @@ of basic library features:: #include #include - #include // IWYU pragma: keep + #include #include - #include // IWYU pragma: keep + #include #include #include #include @@ -92,7 +92,7 @@ of basic library features:: .. admonition:: Try it on Compiler Explorer - `Example #2 `_ + `Example #2 `_ .. seealso::