Index: head/games/wesnoth/files/patch-boost-1.69 =================================================================== --- head/games/wesnoth/files/patch-boost-1.69 (nonexistent) +++ head/games/wesnoth/files/patch-boost-1.69 (revision 482790) @@ -0,0 +1,32 @@ +https://github.com/wesnoth/wesnoth/issues/3646 + +--- src/units/frame.cpp.orig 2018-09-16 07:27:00 UTC ++++ src/units/frame.cpp +@@ -460,15 +460,15 @@ std::vector frame_parsed_parameters::debu + } + + if(!boost::indeterminate(auto_vflip_)) { +- v.emplace_back("auto_vflip=" + utils::bool_string(auto_vflip_)); ++ v.emplace_back("auto_vflip=" + utils::bool_string(bool{auto_vflip_})); + } + + if(!boost::indeterminate(auto_hflip_)) { +- v.emplace_back("auto_hflip=" + utils::bool_string(auto_hflip_)); ++ v.emplace_back("auto_hflip=" + utils::bool_string(bool{auto_hflip_})); + } + + if(!boost::indeterminate(primary_frame_)) { +- v.emplace_back("primary_frame=" + utils::bool_string(primary_frame_)); ++ v.emplace_back("primary_frame=" + utils::bool_string(bool{primary_frame_})); + } + + if(!drawing_layer_.get_original().empty()) { +@@ -772,7 +772,7 @@ const frame_parameters unit_frame::merge_parameters(in + } + + // Convert the tribool to bool +- const bool primary = result.primary_frame == true || boost::logic::indeterminate(result.primary_frame); ++ const bool primary{result.primary_frame == true || boost::logic::indeterminate(result.primary_frame)}; + + /** The engine provides a default image to use for the unit when none is available */ + result.image = current_val.image.is_void() || current_val.image.get_filename().empty() Property changes on: head/games/wesnoth/files/patch-boost-1.69 ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property