ladybird/Userland/Applications/Assistant
Daniel Bertalan fc003cd248 Userland: Silence or resolve new GCC 13 warnings
GCC 13 produces the following true positive warnings:
- `-Wredundant-move` when trying to move `result->tooltip()`, which
  is a const reference in `Assistant/main.cpp`
- `-Wuse-after-free` when freeing an environment variable before
  removing it from `s_malloced_environment_variables`
- `-Wdangling-pointer` when storing an AST node's `this` pointer to the
  interpreter's node stack in LibJS. This is not actually an issue, as
  it is popped when the scope ends, but GCC has no way of telling this.
2023-05-15 07:00:29 +02:00
..
CMakeLists.txt Base: Add icons for Assistant 2023-04-07 11:44:23 +01:00
main.cpp Userland: Silence or resolve new GCC 13 warnings 2023-05-15 07:00:29 +02:00
Providers.cpp Assistant: Replace usages of adopt_ref() with make_ref_counted() 2023-04-15 09:02:01 +01:00
Providers.h Assistant: Cache AppFile objects on AppProvider creation 2023-04-15 09:02:01 +01:00