1. 23 May, 2019 3 commits
    • Lioncash's avatar
      service/aoc: Avoid allocating and discarding data · 3e7d3730
      Lioncash authored
      Previously, the code was accumulating data into a std::vector and then
      tossing all of it away if a setting was disabled.
      
      Instead, we can just check if it's disabled and do no work at all if
      possible. If it's enabled, then we can append to the vector and
      allocate.
      
      Unlikely to impact usage much, but it is slightly less sloppy with
      resources.
      3e7d3730
    • Lioncash's avatar
      service/aoc: Remove unnecessary includes · d0e200a8
      Lioncash authored
      Removes two header dependencies related to file handling that aren't
      actually used within the source file.
      d0e200a8
    • Lioncash's avatar
      service/aoc: Pop all passed values where applicable · 819d229e
      Lioncash authored
      A few of the aoc service stubs/implementations weren't fully popping all
      of the parameters passed to them. This ensures that all parameters are
      popped and, at minimum, logged out.
      819d229e
  2. 22 May, 2019 1 commit
  3. 21 May, 2019 4 commits
  4. 20 May, 2019 11 commits
  5. 19 May, 2019 21 commits