1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 11:28:11 +00:00

LibLine: Remove unused header in Span.h

This commit is contained in:
Emanuele Torre 2020-05-28 22:35:39 +02:00 committed by Andreas Kling
parent 83c11434e4
commit 5c6323c130

View file

@ -26,9 +26,8 @@
#pragma once
#include <stdlib.h>
namespace Line {
class Span {
public:
enum Mode {
@ -52,4 +51,5 @@ private:
size_t m_end { 0 };
Mode m_mode { CodepointOriented };
};
}