mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-11 09:18:05 +03:00
6ac454e70a
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. |
||
---|---|---|
.. | ||
CMakeLists.txt | ||
InspectorServerClient.h | ||
main.cpp | ||
RemoteObject.cpp | ||
RemoteObject.h | ||
RemoteObjectGraphModel.cpp | ||
RemoteObjectGraphModel.h | ||
RemoteObjectPropertyModel.cpp | ||
RemoteObjectPropertyModel.h | ||
RemoteProcess.cpp | ||
RemoteProcess.h |