diff options
author | Neil <unknown> | 2014-07-23 12:57:02 +1000 |
---|---|---|
committer | Neil <unknown> | 2014-07-23 12:57:02 +1000 |
commit | fcdd797b0edfda0e6bbc89f7848c32094efe6669 (patch) | |
tree | ccfc7faecafdf9dc71e18e0cee67f3be36e43516 /src/PositionCache.h | |
parent | fcf7dc58d3dad7efabdcf503512b0729960d5d1a (diff) | |
download | scintilla-mirror-fcdd797b0edfda0e6bbc89f7848c32094efe6669.tar.gz |
Avoid shadowed names mostly in method prototypes. Turn off shadow
warnings for lexers since they may be maintained by others.
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 c81740ee3..9d9821f8f 100644 --- a/src/PositionCache.h +++ b/src/PositionCache.h @@ -104,7 +104,7 @@ class PositionCacheEntry { public: PositionCacheEntry(); ~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_, 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); |