Browse Source

Make pragma once sub-header clearer in C++ usage guidelines (#5184)

hpnrep6 4 years ago
parent
commit
146f947aa7
1 changed files with 2 additions and 2 deletions
  1. 2 2
      community/contributing/cpp_usage_guidelines.rst

+ 2 - 2
community/contributing/cpp_usage_guidelines.rst

@@ -92,8 +92,8 @@ Lambdas should be used conservatively when they make code effectively faster or
 simpler, and do not impede readability. Please ask before using lambdas in a
 pull request.
 
-``#pragma once``
-^^^^^^^^^^^^^^^^
+``#pragma once`` directive
+^^^^^^^^^^^^^^^^^^^^^^^^^^
 
 To follow the existing style, please use standard ``#ifdef``-based include
 guards instead of ``#pragma once`` in new files.