Skip to content

Commit cc1b9e0

Browse files
committed
style(example): replace empty brace initialization with explicit constructor
1 parent 0d056b4 commit cc1b9e0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

example/callcc/throw.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ int main() {
3838
c = c.resume_with(
3939
[](ctx::continuation && c){
4040
throw my_exception(std::move( c), "abc");
41-
return {};
41+
return ctx::continuation();
4242
});
4343

4444
std::cout << "main: done" << std::endl;

0 commit comments

Comments
 (0)