blob: ca57728c39604695b9af02752d31d5165a53fe1b (
plain) (
tree)
|
|
#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;
}
|