| 7819 | typedef int IsContainer; |
| 7820 | template <class C> |
| 7821 | IsContainer IsContainerTest(int /* dummy */, |
| 7822 | typename C::iterator* /* it */ = NULL, |
| 7823 | typename C::const_iterator* /* const_it */ = NULL) { |
| 7824 | return 0; |
| 7825 | } |
| 7826 | |
| 7827 | typedef char IsNotContainer; |
| 7828 | template <class C> |
nothing calls this directly
no outgoing calls
no test coverage detected