diff options
author | Zufu Liu <unknown> | 2019-01-06 12:06:48 +1100 |
---|---|---|
committer | Zufu Liu <unknown> | 2019-01-06 12:06:48 +1100 |
commit | 5476eada003a1fbc182676c625b767efb2c16e6f (patch) | |
tree | aa2d89bf5f61cb359c8ff4a5b2dd14968965e50c /src/PositionCache.h | |
parent | 2e794b1ef52cb04e93f65906a266095bc8eae4f6 (diff) | |
download | scintilla-mirror-5476eada003a1fbc182676c625b767efb2c16e6f.tar.gz |
Bug [#2068]. Fix some clang-tidy warnings.
Diffstat (limited to 'src/PositionCache.h')
-rw-r--r-- | src/PositionCache.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/PositionCache.h b/src/PositionCache.h index 1723e0b2f..1f0486415 100644 --- a/src/PositionCache.h +++ b/src/PositionCache.h @@ -192,7 +192,7 @@ public: void operator=(const PositionCacheEntry &) = delete; void operator=(PositionCacheEntry &&) = delete; ~PositionCacheEntry(); - void Set(unsigned int styleNumber_, const char *s_, unsigned int len_, XYPOSITION *positions_, unsigned int clock_); + void Set(unsigned int styleNumber_, const char *s_, unsigned int len_, const XYPOSITION *positions_, unsigned int clock_); void Clear(); bool Retrieve(unsigned int styleNumber_, const char *s_, unsigned int len_, XYPOSITION *positions_) const; static unsigned int Hash(unsigned int styleNumber_, const char *s, unsigned int len_); |