/usr/include/ITK-4.5/sgi/vcl_map.txx is in libinsighttoolkit4-dev 4.5.0-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | #ifndef vcl_sgi_map_txx_
#define vcl_sgi_map_txx_
#undef VCL_MAP_INSTANTIATE
#if VCL_USE_NATIVE_STL
#define VCL_MAP_INSTANTIATE(K, V, C) \
template class vcl_map<K, V, C >; \
template class std::rb_tree<K,std::pair<const K,V >,std::select1st<std::pair<const K,V > >,C,std::__default_alloc_template<true,0> >
#else
#define VCL_MAP_INSTANTIATE(K, V, C) \
template class vcl_map<K, V, C >
#endif
//-------------------- multimap
#undef VCL_MULTIMAP_INSTANTIATE
#define VCL_MULTIMAP_INSTANTIATE(T, Key, Comp) \
template class vcl_multimap<T, Key, Comp >
#endif // vcl_sgi_map_txx_
|