From 0f127603282018d4a6a7ab16cbcadd7bfe815c82 Mon Sep 17 00:00:00 2001 From: ArvindReddySheelam Date: Fri, 19 Jul 2024 15:52:13 +0530 Subject: [PATCH 1/3] clarifying case senstivity in include order --- cppguide.html | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/cppguide.html b/cppguide.html index 7c87799ed..b7b6151f8 100644 --- a/cppguide.html +++ b/cppguide.html @@ -399,8 +399,9 @@

Names and Order of Includes

Include headers in the following order: Related header, C system headers, C++ standard library headers, other libraries' headers, your project's -headers.

- +headers.\b +The includes should be ordered alphabetically. This ordering should be case-sensitive, meaningthat uppercase and lowercase letters are considered different

+

All of a project's header files should be listed as descendants of the project's source @@ -6020,4 +6021,4 @@

Windows Code

- \ No newline at end of file + From e6355408e90469273b6d8fb16c759efa9c98f22f Mon Sep 17 00:00:00 2001 From: ArvindReddySheelam Date: Fri, 19 Jul 2024 16:12:17 +0530 Subject: [PATCH 2/3] clarifying case sensitivity in include order --- cppguide.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cppguide.html b/cppguide.html index b7b6151f8..75693aee9 100644 --- a/cppguide.html +++ b/cppguide.html @@ -400,7 +400,8 @@

Names and Order of Includes

C++ standard library headers, other libraries' headers, your project's headers.\b -The includes should be ordered alphabetically. This ordering should be case-sensitive, meaningthat uppercase and lowercase letters are considered different

+i +The includes should be ordered alphabetically. This ordering should be case-sensitive, meaningthat uppercase and lowercase letters are considered to be different

All of a project's header files should be From a164d25b365454775e2b6a37abed83a4a8b75d18 Mon Sep 17 00:00:00 2001 From: ArvindReddySheelam Date: Fri, 19 Jul 2024 16:39:37 +0530 Subject: [PATCH 3/3] clarifying case sensitivity in include oreder --- cppguide.html | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/cppguide.html b/cppguide.html index 75693aee9..273d5d767 100644 --- a/cppguide.html +++ b/cppguide.html @@ -399,10 +399,8 @@

Names and Order of Includes

Include headers in the following order: Related header, C system headers, C++ standard library headers, other libraries' headers, your project's -headers.\b -i -The includes should be ordered alphabetically. This ordering should be case-sensitive, meaningthat uppercase and lowercase letters are considered to be different

- +headers. +The includes should be ordered alphabetically. This ordering should be case-sensitive, meaningthat uppercase and lowercase letters are considered to be different

All of a project's header files should be listed as descendants of the project's source