File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 517
517
enum e { A };
518
518
sizeof(A) == sizeof(int) // in C
519
519
sizeof(A) == sizeof(e) // in \Cpp
520
- /* @ \textit { \textrm { and \tcode { sizeof(int)} is not necessarily equal to \tcode { sizeof(e)}} } @ */
520
+ /* and @ sizeof(int)@ is not necessarily equal to @ sizeof(e)@ */
521
521
\end {codeblock }
522
522
523
523
\rationale
638
638
int x[99];
639
639
void f() {
640
640
struct x { int a; };
641
- sizeof(x); /* @ \textit { \textrm { size of the array in C} }@ */
642
- /* @ \textit { \textrm { size of the struct in \Cpp } }@ */
641
+ sizeof(x); /* size of the array in C */
642
+ /* size of the struct in @ \textit { \textrm { \Cpp } }@ */
643
643
}
644
644
\end {codeblock }
645
645
\rationale
Original file line number Diff line number Diff line change 320
320
xleftmargin=1em,
321
321
showstringspaces=false,
322
322
commentstyle=\itshape\rmfamily ,
323
- columns=flexible ,
323
+ columns=fullflexible ,
324
324
keepspaces=true,
325
325
texcl=true}
326
326
Original file line number Diff line number Diff line change 1834
1834
% ligature), so we fix it up manually.
1835
1835
\begin {codeblock }
1836
1836
struct A {
1837
- int i = /* @ \textrm { \textit { some integer expression with side effects }}@ */ ;
1837
+ int i = /* some integer expression with side effects */ ;
1838
1838
A(int arg) : i(arg) { }
1839
1839
// ...
1840
1840
};
You can’t perform that action at this time.
0 commit comments