refactor(kernel/std): ♻️ rename pragma regions from "Member Functions" to "Constructors"

This commit is contained in:
2025-05-10 04:17:19 +00:00
parent 6e26184a04
commit fab3be67ee
7 changed files with 16 additions and 16 deletions

View File

@ -833,7 +833,7 @@ namespace std
size_t _capacity;
public:
#pragma region Member Functions
#pragma region Constructors
basic_string()
: _alloc(Allocator()),
@ -1224,7 +1224,7 @@ namespace std
return _alloc;
}
#pragma endregion Member Functions
#pragma endregion Constructors
#pragma region Element Access