Kaydet (Commit) 03d4d4b3 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

loplugin:unreffun

Change-Id: I2afc1cd5ed813f768f06ad0db651fb9e8e81d844
üst 6bd609d8
...@@ -95,16 +95,6 @@ namespace ...@@ -95,16 +95,6 @@ namespace
return !(b > i) && i < e; return !(b > i) && i < e;
} }
template<typename T>
inline bool is_subrange(const T sb, const T se, const T b, const T e) {
return !(b > sb || se > e);
}
template<typename T>
inline bool is_subrange(const std::pair<T, T> &s, const T b, const T e) {
return is_subrange(s.first, s.second, b, e);
}
int findSameDirLimit(const sal_Unicode* buffer, int charCount, bool rtl) int findSameDirLimit(const sal_Unicode* buffer, int charCount, bool rtl)
{ {
UErrorCode status = U_ZERO_ERROR; UErrorCode status = U_ZERO_ERROR;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment