Skip to content

Commit 3056395

Browse files
committed
[NFC][libc] Delete dead BlockStatus enum type
1 parent 859b4f1 commit 3056395

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

libc/src/__support/block.h

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -24,17 +24,6 @@
2424

2525
namespace LIBC_NAMESPACE_DECL {
2626

27-
namespace internal {
28-
// Types of corrupted blocks, and functions to crash with an error message
29-
// corresponding to each type.
30-
enum class BlockStatus {
31-
VALID,
32-
MISALIGNED,
33-
PREV_MISMATCHED,
34-
NEXT_MISMATCHED,
35-
};
36-
} // namespace internal
37-
3827
/// Returns the value rounded down to the nearest multiple of alignment.
3928
LIBC_INLINE constexpr size_t align_down(size_t value, size_t alignment) {
4029
// Note this shouldn't overflow since the result will always be <= value.

0 commit comments

Comments
 (0)