1. 31 Oct, 2021 3 commits
  2. 29 Oct, 2021 9 commits
  3. 28 Oct, 2021 1 commit
  4. 27 Oct, 2021 5 commits
  5. 26 Oct, 2021 4 commits
  6. 24 Oct, 2021 8 commits
  7. 23 Oct, 2021 1 commit
  8. 21 Oct, 2021 2 commits
  9. 20 Oct, 2021 4 commits
  10. 17 Oct, 2021 3 commits
    • topjohnwu's avatar
      Fix API doc · 8276a077
      topjohnwu authored
      8276a077
    • LoveSy's avatar
      Fix always log hook fails · abfb3bb3
      LoveSy authored
      abfb3bb3
    • LoveSy's avatar
      Fix UB of loading modules · e184eb4a
      LoveSy authored
      - 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.
      e184eb4a