Skip to content

Commit cbfbd93

Browse files
committed
Merge pull request #467 from Eelis/up-master
[basic.align], [syserr] Add missing semicolons.
2 parents d8d9962 + bb810fa commit cbfbd93

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

source/basic.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4215,7 +4215,7 @@
42154215
of a complete object and when it is used as the type of a subobject. \enterexample
42164216
\begin{codeblock}
42174217
struct B { long double d; };
4218-
struct D : virtual B { char c; }
4218+
struct D : virtual B { char c; };
42194219
\end{codeblock}
42204220

42214221
When \tcode{D} is the type of a complete object, it will have a subobject of

source/diagnostics.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -778,7 +778,7 @@
778778
wrong_protocol_type, // \tcode{EPROTOTYPE}
779779
};
780780

781-
template <> struct is_error_condition_enum<errc> : true_type { }
781+
template <> struct is_error_condition_enum<errc> : true_type { };
782782

783783
error_code make_error_code(errc e) noexcept;
784784
error_condition make_error_condition(errc e) noexcept;

0 commit comments

Comments
 (0)