Commit fa41db16 authored by DailyShana's avatar DailyShana

compatibility to c++14

conditionally-explicit constructor of std::tuple is a c++17 library feature
parent 4cc1b185
...@@ -1968,7 +1968,7 @@ std::tuple<uint8, effect*> card::refresh_control_status() { ...@@ -1968,7 +1968,7 @@ std::tuple<uint8, effect*> card::refresh_control_status() {
ceffect = peffect; ceffect = peffect;
} }
} }
return { final, ceffect }; return std::make_tuple(final, ceffect);
} }
void card::count_turn(uint16 ct) { void card::count_turn(uint16 ct) {
turn_counter = ct; turn_counter = ct;
......
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