Skip to content

Commit c479bf0

Browse files
Eeliszygoloid
authored andcommitted
Consistently use bold font for table headers.
1 parent 3484797 commit c479bf0

File tree

4 files changed

+18
-18
lines changed

4 files changed

+18
-18
lines changed

source/atomics.tex

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1023,12 +1023,12 @@
10231023
\begin{floattable}
10241024
{Atomic arithmetic computations}{tab:atomic.arithmetic.computations}{lll|lll}
10251025
\hline
1026-
\tcode{Key} &
1027-
Op &
1028-
Computation &
1029-
\tcode{Key} &
1030-
Op &
1031-
Computation \\ \hline
1026+
\hdstyle{\tcode{\placeholder{key}}} &
1027+
\hdstyle{Op} &
1028+
\hdstyle{Computation} &
1029+
\hdstyle{\tcode{\placeholder{key}}} &
1030+
\hdstyle{Op} &
1031+
\hdstyle{Computation} \\ \hline
10321032
\tcode{add} &
10331033
\tcode{+} &
10341034
addition &

source/declarations.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1302,7 +1302,7 @@
13021302
{tab:simple.type.specifiers}
13031303
{ll}
13041304
\topline
1305-
Specifier(s) & Type \\ \capsep
1305+
\hdstyle{Specifier(s)} & \hdstyle{Type} \\ \capsep
13061306
\grammarterm{type-name} & the type named \\
13071307
\grammarterm{simple-template-id} & the type as defined in~\ref{temp.names} \\
13081308
\grammarterm{template-name} & placeholder for a type to be deduced\\

source/lib-intro.tex

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1438,7 +1438,7 @@
14381438
\begin{concepttable}{\tcode{EqualityComparable} requirements}{equalitycomparable}
14391439
{x{1in}x{1in}p{3in}}
14401440
\topline
1441-
Expression & Return type & \multicolumn{1}{c|}{Requirement} \\ \capsep
1441+
\hdstyle{Expression} & \hdstyle{Return type} & \rhdr{Requirement} \\ \capsep
14421442
\tcode{a == b} &
14431443
convertible to \tcode{bool} &
14441444
\tcode{==} is an equivalence relation,
@@ -1457,7 +1457,7 @@
14571457
\begin{concepttable}{\tcode{LessThanComparable} requirements}{lessthancomparable}
14581458
{x{1in}x{1in}p{3in}}
14591459
\topline
1460-
Expression & Return type & Requirement \\ \capsep
1460+
\hdstyle{Expression} & \hdstyle{Return type} & \hdstyle{Requirement} \\ \capsep
14611461
\tcode{a < b} &
14621462
convertible to \tcode{bool} &
14631463
\tcode{<} is a strict weak ordering relation~(\ref{alg.sorting}) \\
@@ -1468,7 +1468,7 @@
14681468
\begin{concepttable}{\tcode{DefaultConstructible} requirements}{defaultconstructible}
14691469
{x{2.15in}p{3in}}
14701470
\topline
1471-
Expression & Post-condition \\ \capsep
1471+
\hdstyle{Expression} & \hdstyle{Post-condition} \\ \capsep
14721472
\tcode{T t;} & object \tcode{t} is default-initialized \\ \rowsep
14731473
\tcode{T u\{\};} & object \tcode{u} is value-initialized or aggregate-initialized \\ \rowsep
14741474
\tcode{T()}\br\tcode{T\{\}} & an object of type \tcode{T} is value-initialized
@@ -1479,7 +1479,7 @@
14791479
\begin{concepttable}{\tcode{MoveConstructible} requirements}{moveconstructible}
14801480
{p{1in}p{4.15in}}
14811481
\topline
1482-
Expression & Post-condition \\ \capsep
1482+
\hdstyle{Expression} & \hdstyle{Post-condition} \\ \capsep
14831483
\tcode{T u = rv;} & \tcode{u} is equivalent to the value of \tcode{rv} before the construction\\ \rowsep
14841484
\tcode{T(rv)} &
14851485
\tcode{T(rv)} is equivalent to the value of \tcode{rv} before the construction \\ \rowsep
@@ -1494,7 +1494,7 @@
14941494
\begin{concepttable}{\tcode{CopyConstructible} requirements (in addition to \tcode{MoveConstructible})}{copyconstructible}
14951495
{p{1in}p{4.15in}}
14961496
\topline
1497-
Expression & Post-condition \\ \capsep
1497+
\hdstyle{Expression} & \hdstyle{Post-condition} \\ \capsep
14981498
\tcode{T u = v;} & the value of \tcode{v} is unchanged and is equivalent to \tcode{ u}\\ \rowsep
14991499
\tcode{T(v)} &
15001500
the value of \tcode{v} is unchanged and is equivalent to \tcode{T(v)} \\
@@ -1504,7 +1504,7 @@
15041504
\begin{concepttable}{\tcode{MoveAssignable} requirements}{moveassignable}
15051505
{p{1in}p{1in}p{1in}p{1.9in}}
15061506
\topline
1507-
Expression & Return type & Return value & Post-condition \\ \capsep
1507+
\hdstyle{Expression} & \hdstyle{Return type} & \hdstyle{Return value} & \hdstyle{Post-condition} \\ \capsep
15081508
\tcode{t = rv} & \tcode{T\&} & \tcode{t} &
15091509
If \tcode{t} and \tcode{rv} do not refer to the same object,
15101510
\tcode{t} is equivalent to the value of \tcode{rv} before the assignment\\ \rowsep
@@ -1520,15 +1520,15 @@
15201520
\begin{concepttable}{\tcode{CopyAssignable} requirements (in addition to \tcode{MoveAssignable})}{copyassignable}
15211521
{p{1in}p{1in}p{1in}p{1.9in}}
15221522
\topline
1523-
Expression & Return type & Return value & Post-condition \\ \capsep
1523+
\hdstyle{Expression} & \hdstyle{Return type} & \hdstyle{Return value} & \hdstyle{Post-condition} \\ \capsep
15241524
\tcode{t = v} & \tcode{T\&} & \tcode{t} & \tcode{t} is equivalent to \tcode{v}, the value of \tcode{v} is unchanged\\
15251525
\end{concepttable}
15261526

15271527
\indextext{requirements!\idxcode{Destructible}}
15281528
\begin{concepttable}{\tcode{Destructible} requirements}{destructible}
15291529
{p{1in}p{4.15in}}
15301530
\topline
1531-
Expression & Post-condition \\ \capsep
1531+
\hdstyle{Expression} & \hdstyle{Post-condition} \\ \capsep
15321532
\tcode{u.\~T()} & All resources owned by \tcode{u} are reclaimed, no exception is propagated. \\
15331533
\end{concepttable}
15341534

source/tables.tex

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -91,9 +91,9 @@
9191
{
9292
\begin{floattablebase}{#1}{#2}{cc|cc|cc}{htbp}
9393
\topline
94-
#3 & #4 &
95-
#3 & #4 &
96-
#3 & #4 \\ \capsep
94+
\hdstyle{#3} & \hdstyle{#4} &
95+
\hdstyle{#3} & \hdstyle{#4} &
96+
\hdstyle{#3} & \hdstyle{#4} \\ \capsep
9797
}
9898
{
9999
\end{floattablebase}

0 commit comments

Comments
 (0)