Skip to content

Commit 30534b3

Browse files
TylerMSFTTylerMSFT
authored andcommitted
tiny tweak
1 parent 3375c17 commit 30534b3

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

docs/ide/include-cleanup-messages.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,13 @@ Include cleanup generates the following messages:
2727

2828
## `VCIC001`: Content from #include is used in this file and transitively included
2929

30-
This message means that you're using content from a header file that is included indirectly. For example, you may be directly including a header file that also contains `#include <string>`. If you use `string` in your code, but don't `#include <string>` in that file, it works as long as the other header file continues to indirectly include `<string>` for you. This message identifies that this is going on in your code so that you can take action to directly include the transitively included header file. For more information, see [Direct vs indirect headers](include-cleanup-overview.md#direct-vs-indirect-headers).
30+
This message means that you're using content from a header file that is included indirectly.
31+
32+
For example, you may be directly including a header file that also contains `#include <string>`. If you use `string` in your code, but don't `#include <string>` in that file, it works as long as the other header file continues to indirectly include `<string>` for you. This message identifies this sitution in your code so that you can take action to directly include the transitively included header file. For more information, see [Direct vs indirect headers](include-cleanup-overview.md#direct-vs-indirect-headers).
3133

3234
## `VCIC002`: #include is not used in this file
3335

34-
This message indicates that the specified header file is not used in the current file. You can remove the associated `#include` directive to cleanup your includes and improve your build times.
36+
This message means that the specified header file is not used in the current file. You can remove the associated `#include` directive to cleanup your includes and improve your build times.
3537

3638
## See also
3739

0 commit comments

Comments
 (0)