From ddba2b6d667e44c0ee1b4f9aa718a40794d84766 Mon Sep 17 00:00:00 2001 From: calcium Date: Sat, 24 Aug 2024 23:36:22 -0400 Subject: [PATCH] Reordered ClassFormat.h --- include/ClassFormat.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/include/ClassFormat.h b/include/ClassFormat.h index b388af6..749fca7 100644 --- a/include/ClassFormat.h +++ b/include/ClassFormat.h @@ -58,6 +58,12 @@ enum class ACCESS_FLAGS }; } // namespace Method +struct BaseAttribute +{ + u2 attribute_name_index; + u4 attribute_length; +}; + struct attribute_info { u2 attribute_name_index; @@ -65,12 +71,6 @@ struct attribute_info std::vector info; }; -struct BaseAttribute -{ - u2 attribute_name_index; - u4 attribute_length; -}; - struct method_info { u2 access_flags;