Skip to content

Commit eb08737

Browse files
committed
Sync whitespace with upstream a bit better
1 parent 3721fd8 commit eb08737

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

cppguide.html

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ <h2 id="Background" class="ignoreLink">Background</h2>
5454
please ignore any suggestions or rules that regard Abseil.
5555
</p>
5656

57+
5758
<p>Note that this guide is not a C++ tutorial: we assume that
5859
the reader is familiar with the language. </p>
5960

@@ -178,6 +179,8 @@ <h2 id="C++_Version">C++ Version</h2>
178179
features. The C++ version targeted by this guide will advance
179180
(aggressively) over time.</p>
180181

182+
183+
181184
<p>Do not use
182185
<a href="#Nonstandard_Extensions">non-standard extensions</a>.</p>
183186

@@ -243,13 +246,13 @@ <h3 id="The__pragma_once_Guard">The #pragma once Guard</h3>
243246
<code><i>&lt;PROJECT&gt;</i>_<i>&lt;PATH&gt;</i>_<i>&lt;FILE&gt;</i>_H_</code>.</p>
244247
</span>
245248

246-
<div>
249+
250+
247251
<p>To guarantee uniqueness, they should
248252
be based on the full path in a project's source tree. For
249253
example, the file <code>foo/src/bar/baz.h</code> in
250254
project <code>foo</code> should have the following
251255
guard:</p>
252-
</div>
253256

254257
<pre>#ifndef FOO_BAR_BAZ_H_
255258
#define FOO_BAR_BAZ_H_

0 commit comments

Comments
 (0)