Skip to content

Commit b6b4ef3

Browse files
JohelEGPzygoloid
authored andcommitted
[stopcallback] Fix indentation (cplusplus#4040)
1 parent 582d563 commit b6b4ef3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

source/threads.tex

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -856,10 +856,10 @@
856856

857857
// \ref{stopcallback.cons}, constructors and destructor
858858
template<class C>
859-
explicit stop_callback(const stop_token& st, C&& cb)
859+
explicit stop_callback(const stop_token& st, C&& cb)
860860
noexcept(is_nothrow_constructible_v<Callback, C>);
861861
template<class C>
862-
explicit stop_callback(stop_token&& st, C&& cb)
862+
explicit stop_callback(stop_token&& st, C&& cb)
863863
noexcept(is_nothrow_constructible_v<Callback, C>);
864864
~stop_callback();
865865

@@ -873,7 +873,7 @@
873873
};
874874

875875
template<class Callback>
876-
stop_callback(stop_token, Callback) -> stop_callback<Callback>;
876+
stop_callback(stop_token, Callback) -> stop_callback<Callback>;
877877
}
878878
\end{codeblock}
879879

0 commit comments

Comments
 (0)