Commit 52ab820f authored by Marian Triebe's avatar Marian Triebe

Fix extra semicolon warnings

parent ebb1c29b
...@@ -35,7 +35,7 @@ first_stage::behavior_type typed_first_stage() { ...@@ -35,7 +35,7 @@ first_stage::behavior_type typed_first_stage() {
return [](double x) { return [](double x) {
return std::make_tuple(x * 2.0, x * 4.0); return std::make_tuple(x * 2.0, x * 4.0);
}; };
}; }
second_stage::behavior_type typed_second_stage() { second_stage::behavior_type typed_second_stage() {
return [](double x, double y) { return [](double x, double y) {
...@@ -45,7 +45,7 @@ second_stage::behavior_type typed_second_stage() { ...@@ -45,7 +45,7 @@ second_stage::behavior_type typed_second_stage() {
behavior untyped_first_stage() { behavior untyped_first_stage() {
return typed_first_stage().unbox(); return typed_first_stage().unbox();
}; }
behavior untyped_second_stage() { behavior untyped_second_stage() {
return typed_second_stage().unbox(); return typed_second_stage().unbox();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment