]> git.tdb.fi Git - ext/sigc++-2.0.git/blob - tools/have_sun_reverse_iterator.cc
Adjust the name of the library to match upstream
[ext/sigc++-2.0.git] / tools / have_sun_reverse_iterator.cc
1 // Configuration-time test program, used in Meson build.
2 // Corresponds to the M4 macro SIGC_CXX_HAS_SUN_REVERSE_ITERATOR.
3
4 #include <iterator>
5
6 int main()
7 {
8   typedef std::reverse_iterator<char*, std::random_access_iterator_tag, char, char&, char*, int> ReverseIter;
9   return 0;
10 }