LoveSy e184eb4a23 Fix UB of loading modules
- The lambda here infers its return type as `std::string`,
  and since `info` is `const`, the labmda copies `info.name`
  and returns a `std::string&&`. After captured by the
  `std::string_view`, the `std::string&&` return value
  deconstructs and makes `std::string_view` refers to a
  dangling pointer.
2021-10-17 04:38:56 -07:00
..
2021-10-17 04:38:56 -07:00
2019-01-30 03:10:12 -05:00
2019-03-03 06:35:25 -05:00
2021-09-09 01:37:20 -07:00