Skip to content

Commit d12066a

Browse files
blackteahamburgertkoeppe
authored andcommitted
[thread] Blank line between the private and public members
1 parent 2868ab4 commit d12066a

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

source/threads.tex

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2758,6 +2758,7 @@
27582758
template<class T> struct atomic_ref {
27592759
private:
27602760
T* ptr; // \expos
2761+
27612762
public:
27622763
using value_type = T;
27632764
static constexpr size_t required_alignment = @\impdefx{required alignment for \tcode{atomic_ref} type's operations}@;
@@ -3197,7 +3198,8 @@
31973198
namespace std {
31983199
template<> struct atomic_ref<@\placeholder{integral-type}@> {
31993200
private:
3200-
@\placeholder{integral-type}@* ptr; // \expos
3201+
@\placeholder{integral-type}@* ptr; // \expos
3202+
32013203
public:
32023204
using value_type = @\placeholder{integral-type}@;
32033205
using difference_type = value_type;
@@ -3330,7 +3332,8 @@
33303332
namespace std {
33313333
template<> struct atomic_ref<@\placeholder{floating-point-type}@> {
33323334
private:
3333-
@\placeholder{floating-point-type}@* ptr; // \expos
3335+
@\placeholder{floating-point-type}@* ptr; // \expos
3336+
33343337
public:
33353338
using value_type = @\placeholder{floating-point-type}@;
33363339
using difference_type = value_type;
@@ -3438,6 +3441,7 @@
34383441
template<class T> struct atomic_ref<T*> {
34393442
private:
34403443
T** ptr; // \expos
3444+
34413445
public:
34423446
using value_type = T*;
34433447
using difference_type = ptrdiff_t;

0 commit comments

Comments
 (0)