Skip to content

Commit e2290a8

Browse files
JohelEGPtkoeppe
authored andcommitted
[stopcallback] Fix indentation (#4040)
1 parent e66787a commit e2290a8

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
@@ -850,10 +850,10 @@
850850

851851
// \ref{stopcallback.cons}, constructors and destructor
852852
template<class C>
853-
explicit stop_callback(const stop_token& st, C&& cb)
853+
explicit stop_callback(const stop_token& st, C&& cb)
854854
noexcept(is_nothrow_constructible_v<Callback, C>);
855855
template<class C>
856-
explicit stop_callback(stop_token&& st, C&& cb)
856+
explicit stop_callback(stop_token&& st, C&& cb)
857857
noexcept(is_nothrow_constructible_v<Callback, C>);
858858
~stop_callback();
859859

@@ -867,7 +867,7 @@
867867
};
868868

869869
template<class Callback>
870-
stop_callback(stop_token, Callback) -> stop_callback<Callback>;
870+
stop_callback(stop_token, Callback) -> stop_callback<Callback>;
871871
}
872872
\end{codeblock}
873873

0 commit comments

Comments
 (0)