File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -54,6 +54,7 @@ <h2 id="Background" class="ignoreLink">Background</h2>
54
54
please ignore any suggestions or rules that regard Abseil.
55
55
</ p >
56
56
57
+
57
58
< p > Note that this guide is not a C++ tutorial: we assume that
58
59
the reader is familiar with the language. </ p >
59
60
@@ -178,6 +179,8 @@ <h2 id="C++_Version">C++ Version</h2>
178
179
features. The C++ version targeted by this guide will advance
179
180
(aggressively) over time.</ p >
180
181
182
+
183
+
181
184
< p > Do not use
182
185
< a href ="#Nonstandard_Extensions "> non-standard extensions</ a > .</ p >
183
186
@@ -243,13 +246,13 @@ <h3 id="The__pragma_once_Guard">The #pragma once Guard</h3>
243
246
< code > < i > <PROJECT></ i > _< i > <PATH></ i > _< i > <FILE></ i > _H_</ code > .</ p >
244
247
</ span >
245
248
246
- < div >
249
+
250
+
247
251
< p > To guarantee uniqueness, they should
248
252
be based on the full path in a project's source tree. For
249
253
example, the file < code > foo/src/bar/baz.h</ code > in
250
254
project < code > foo</ code > should have the following
251
255
guard:</ p >
252
- </ div >
253
256
254
257
< pre > #ifndef FOO_BAR_BAZ_H_
255
258
#define FOO_BAR_BAZ_H_
You can’t perform that action at this time.
0 commit comments