File: vcl_list.txx

package info (click to toggle)
insighttoolkit 3.6.0-3
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 94,956 kB
  • ctags: 74,981
  • sloc: cpp: 355,621; ansic: 195,070; fortran: 28,713; python: 3,802; tcl: 1,996; sh: 1,175; java: 583; makefile: 415; csh: 184; perl: 175
file content (27 lines) | stat: -rw-r--r-- 753 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#ifndef vcl_gcc_libstdcxx_v3_list_txx_
#define vcl_gcc_libstdcxx_v3_list_txx_

#include <vcl_list.h>

#undef VCL_LIST_INSTANTIATE
#ifdef VCL_GCC_31
#define VCL_LIST_INSTANTIATE(T) \
template class vcl_list<T >
#else
#define VCL_LIST_INSTANTIATE(T) \
template class vcl_list<T >; \
/* a member template : */ \
template void \
std::list<T >::_M_insert_dispatch(std::list<T >::iterator,std::list<T >::iterator,std::list<T >::iterator,_Bool<false >)
#endif

#if 0
void std::list<int, std::allocator<int > >::_M_insert_dispatch
<std::_List_iterator<int, int &, int *> >
(std::_List_iterator<int, int &, int *>,
 std::_List_iterator<int, int &, int *>,
 std::_List_iterator<int, int &, int *>,
 _Bool<false >)
#endif

#endif // vcl_gcc_libstdcxx_v3_list_txx_