ladybird/Userland/DevTools/Inspector
Lenny Maiorani 6ac454e70a DevTools: Remove redundant default destructor and forward declarations
Problem:
- Default destructors (and constructors) are in `.cpp` files. This
  prevents the compiler's optimizer from inlining them when it thinks
  inlining is appropriate (unless LTO is used).
- Forward declarations can prevent some optimizations, such as
  inlining of constructors and destructors.

Solution:
- Remove them or set them to `= default` and let the compiler handle
  the generation of them.
- Remove unneeded forward declarations.
2021-05-21 22:53:33 +01:00
..
CMakeLists.txt Inspector: Add help documentation 2021-02-23 13:52:16 +01:00
InspectorServerClient.h DevTools: Remove redundant default destructor and forward declarations 2021-05-21 22:53:33 +01:00
main.cpp Inspector: Throw an error when inspecting a process it has no access to 2021-05-20 08:21:48 +02:00
RemoteObject.cpp Everything: Move to SPDX license identifiers in all files. 2021-04-22 11:22:27 +02:00
RemoteObject.h Everything: Move to SPDX license identifiers in all files. 2021-04-22 11:22:27 +02:00
RemoteObjectGraphModel.cpp Everything: Move to SPDX license identifiers in all files. 2021-04-22 11:22:27 +02:00
RemoteObjectGraphModel.h AK: Rename adopt() to adopt_ref() 2021-04-23 16:46:57 +02:00
RemoteObjectPropertyModel.cpp Everything: Move to SPDX license identifiers in all files. 2021-04-22 11:22:27 +02:00
RemoteObjectPropertyModel.h AK: Rename adopt() to adopt_ref() 2021-04-23 16:46:57 +02:00
RemoteProcess.cpp DevTools: Remove redundant default destructor and forward declarations 2021-05-21 22:53:33 +01:00
RemoteProcess.h DevTools: Remove redundant default destructor and forward declarations 2021-05-21 22:53:33 +01:00