diff options
author | Neil <nyamatongwe@gmail.com> | 2023-01-25 17:21:47 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2023-01-25 17:21:47 +1100 |
commit | bf5bf207cb43572fa887fd30cb92e960b2a949c8 (patch) | |
tree | 2499acf67d1e2e99e07daf7c6bf9f72f6811122b /src/PositionCache.h | |
parent | cc899ffb690aa53cfaff02fafb5297515f292164 (diff) | |
download | scintilla-mirror-bf5bf207cb43572fa887fd30cb92e960b2a949c8.tar.gz |
Use LineLayout::LineNumber inside LineLayoutCache so it doesn't have to be
declared to be a friend.
Diffstat (limited to 'src/PositionCache.h')
-rw-r--r-- | src/PositionCache.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/PositionCache.h b/src/PositionCache.h index 0a3434929..e830b67dc 100644 --- a/src/PositionCache.h +++ b/src/PositionCache.h @@ -48,7 +48,6 @@ public: */ class LineLayout { private: - friend class LineLayoutCache; std::unique_ptr<int []>lineStarts; int lenLineStarts; /// Drawing is only performed for @a maxLineLength characters on each line. |