File: have_sun_reverse_iterator.cc

package info (click to toggle)
libsigc%2B%2B-2.0 2.12.1-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,432 kB
  • sloc: cpp: 4,132; xml: 339; python: 196; makefile: 192; sh: 5
file content (10 lines) | stat: -rw-r--r-- 282 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
// Configuration-time test program, used in Meson build.
// Corresponds to the M4 macro SIGC_CXX_HAS_SUN_REVERSE_ITERATOR.

#include <iterator>

int main()
{
  typedef std::reverse_iterator<char*, std::random_access_iterator_tag, char, char&, char*, int> ReverseIter;
  return 0;
}