1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 15:07:45 +00:00

LibDebug: Shrink some of the high-volume data structures

We quickly allocate a *ton* of these when loading large executables.
This commit is contained in:
Andreas Kling 2020-11-08 22:39:39 +01:00
parent 81b7c072ed
commit fc948ea3df
2 changed files with 6 additions and 5 deletions

View file

@ -43,7 +43,7 @@ public:
DIE(const CompilationUnit&, u32 offset);
struct AttributeValue {
enum class Type {
enum class Type : u8 {
UnsignedNumber,
SignedNumber,
String,