How to add N weeks to a sys_days?

I have a starting sys_days called start but need to find the sys_days corresponding to start + N weeks into the future???

here is an example of it
https://en.cppreference.com/w/cpp/chrono/year_month_day/operator_days

I don't remember anything in chrono that knows about weeks: I think you just have to use 7 days * #weeks for that.
Last edited on
thanks!!
Topic archived. No new replies allowed.