blob: 2fa5576788c069e4fc423856df447bbe58dc1286 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#pragma once
struct TCStringEndIterator {
};
template <class It>
static inline bool operator==(It b, TCStringEndIterator) {
return !*b;
}
template <class It>
static inline bool operator!=(It b, TCStringEndIterator) {
return !!*b;
}
|