From 89b008ccc354e2a9d17695a85b3bb9e6e1517eda Mon Sep 17 00:00:00 2001 From: Eduardo Almeida Date: Mon, 13 Jan 2025 23:05:30 +0000 Subject: [PATCH] doc: Update coding-style.rst to use #include with quotes --- doc/contributing/source/coding-style.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/contributing/source/coding-style.rst b/doc/contributing/source/coding-style.rst index a7d5be0af..c2bfd7b07 100644 --- a/doc/contributing/source/coding-style.rst +++ b/doc/contributing/source/coding-style.rst @@ -777,7 +777,7 @@ For standard headers, use the C++ style of inclusion: .. sourcecode:: cpp - #include + #include "ns3/header.h" - inside .cc files, use @@ -789,7 +789,7 @@ For standard headers, use the C++ style of inclusion: .. sourcecode:: cpp - #include + #include "ns3/header.h" Variables and constants =======================