From 22d0a6d92f9e5a93b248eef0609d40ecb332f869 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sun, 1 Mar 2020 12:35:09 +0100 Subject: 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. --- Libraries/LibGUI/TextDocument.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'Libraries/LibGUI/TextDocument.h') diff --git a/Libraries/LibGUI/TextDocument.h b/Libraries/LibGUI/TextDocument.h index 51234450b7..76ce03d23a 100644 --- a/Libraries/LibGUI/TextDocument.h +++ b/Libraries/LibGUI/TextDocument.h @@ -75,9 +75,9 @@ public: static NonnullRefPtr 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& spans) { m_spans = spans; } @@ -88,7 +88,7 @@ public: bool has_spans() const { return !m_spans.is_empty(); } const Vector& 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); 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); -- cgit v1.2.3