mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 04:47:34 +00:00
AK: Remove unnecessary casts to size_t, after Vector changes
Now that Vector uses size_t, we can remove a whole bunch of redundant casts to size_t.
This commit is contained in:
parent
fee20bd8de
commit
22d0a6d92f
15 changed files with 60 additions and 57 deletions
|
@ -86,7 +86,7 @@ void TextDocument::set_text(const StringView& text)
|
|||
size_t TextDocumentLine::first_non_whitespace_column() const
|
||||
{
|
||||
for (size_t i = 0; i < length(); ++i) {
|
||||
if (!isspace(m_text[(int)i]))
|
||||
if (!isspace(m_text[i]))
|
||||
return i;
|
||||
}
|
||||
return length();
|
||||
|
|
|
@ -75,9 +75,9 @@ public:
|
|||
static NonnullRefPtr<TextDocument> create(Client* client = nullptr);
|
||||
~TextDocument();
|
||||
|
||||
size_t line_count() const { return (size_t)m_lines.size(); }
|
||||
const TextDocumentLine& line(size_t line_index) const { return m_lines[(int)line_index]; }
|
||||
TextDocumentLine& line(size_t line_index) { return m_lines[(int)line_index]; }
|
||||
size_t line_count() const { return m_lines.size(); }
|
||||
const TextDocumentLine& line(size_t line_index) const { return m_lines[line_index]; }
|
||||
TextDocumentLine& line(size_t line_index) { return m_lines[line_index]; }
|
||||
|
||||
void set_spans(const Vector<TextDocumentSpan>& spans) { m_spans = spans; }
|
||||
|
||||
|
@ -88,7 +88,7 @@ public:
|
|||
|
||||
bool has_spans() const { return !m_spans.is_empty(); }
|
||||
const Vector<TextDocumentSpan>& spans() const { return m_spans; }
|
||||
void set_span_at_index(size_t index, TextDocumentSpan span) { m_spans[(int)index] = move(span); }
|
||||
void set_span_at_index(size_t index, TextDocumentSpan span) { m_spans[index] = move(span); }
|
||||
|
||||
void append_line(NonnullOwnPtr<TextDocumentLine>);
|
||||
void remove_line(size_t line_index);
|
||||
|
@ -156,7 +156,7 @@ public:
|
|||
|
||||
StringView view() const { return { characters(), (size_t)length() }; }
|
||||
const char* characters() const { return m_text.data(); }
|
||||
size_t length() const { return (size_t)m_text.size() - 1; }
|
||||
size_t length() const { return m_text.size() - 1; }
|
||||
void set_text(TextDocument&, const StringView&);
|
||||
void append(TextDocument&, char);
|
||||
void prepend(TextDocument&, char);
|
||||
|
|
|
@ -559,7 +559,8 @@ void TextEditor::move_selected_lines_down()
|
|||
get_selection_line_boundaries(first_line, last_line);
|
||||
|
||||
auto& lines = document().lines();
|
||||
if (last_line >= (size_t)(lines.size() - 1))
|
||||
ASSERT(lines.size() != 0);
|
||||
if (last_line >= lines.size() - 1)
|
||||
return;
|
||||
|
||||
lines.insert((int)first_line, lines.take((int)last_line + 1));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue