Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion source/basic.tex
Original file line number Diff line number Diff line change
Expand Up @@ -5293,7 +5293,7 @@
\begin{codeblock}
class X; // \tcode{X} is an incomplete type
extern X* xp; // \tcode{xp} is a pointer to an incomplete type
extern int arr[]; // the type of arr is incomplete
extern int arr[]; // the type of \tcode{arr} is incomplete
typedef int UNKA[]; // \tcode{UNKA} is an incomplete type
UNKA* arrp; // \tcode{arrp} is a pointer to an incomplete type
UNKA** arrpp;
Expand Down
Loading