How do you set time for an instance of std::chrono::time_point<>? For example: 6 pm tomorrow. I just wanna get the time from now til then. Thanks in advance.
chrono library doesn't have a concept of a calendar day. You can take the current time and add 24 hours, but you can't find the beginning of tomorrow just from the chrono library.