diff options
| author | Fabian Imhof <fabian.imhof@ost.ch> | 2024-10-15 09:05:37 +0000 |
|---|---|---|
| committer | Fabian Imhof <fabian.imhof@ost.ch> | 2024-10-15 09:05:37 +0000 |
| commit | 429d99ca40254e9e19da938ff9f2065a543708cd (patch) | |
| tree | 0eb799b3a1bcf4e4d3e6e28957453038cf13f085 /arch/x86_64/src/memory/multiboot.cpp | |
| parent | 0fac2d5f7a868b5d65db6fb42ce256485e651206 (diff) | |
| download | teachos-429d99ca40254e9e19da938ff9f2065a543708cd.tar.xz teachos-429d99ca40254e9e19da938ff9f2065a543708cd.zip | |
rename contains_flags parameter
Diffstat (limited to 'arch/x86_64/src/memory/multiboot.cpp')
| -rw-r--r-- | arch/x86_64/src/memory/multiboot.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86_64/src/memory/multiboot.cpp b/arch/x86_64/src/memory/multiboot.cpp index b0432a9..8c6793e 100644 --- a/arch/x86_64/src/memory/multiboot.cpp +++ b/arch/x86_64/src/memory/multiboot.cpp @@ -2,7 +2,7 @@ namespace teachos::arch::memory { - auto elf_section_flags::contains_flags(std::bitset<64U> b) const -> bool { return (flags & b) == b; } + auto elf_section_flags::contains_flags(std::bitset<64U> other) const -> bool { return (flags & other) == other; } auto elf_section_header::is_null() const -> bool { |
