SyntaxHighlighting: Fix MSVC warning

Implicit size_t -> int conversion.

Upstream MR: https://invent.kde.org/frameworks/syntax-highlighting/-/merge_requests/601

Change-Id: I4208f0240c8a223fccf40add828499597e137c26
Reviewed-by: David Schulz <david.schulz@qt.io>
This commit is contained in:
Orgad Shaneh
2024-02-25 12:22:41 +02:00
committed by Orgad Shaneh
parent 1b53c931c5
commit b890b35e11

View File

@@ -36,7 +36,7 @@ public:
return state.d.data();
}
int size() const
std::size_t size() const
{
return m_contextStack.size();
}