/usr/include/ITK-4.9/vcl_valarray.h is in libinsighttoolkit4-dev 4.9.0-4ubuntu1.
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 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | #ifndef vcl_valarray_h_
#define vcl_valarray_h_
/*
fsm
*/
#include "vcl_compiler.h"
#if defined(VCL_GCC_295)
# include <valarray> // 2.95
# define vcl_valarray valarray
#elif defined(VCL_VC_6)
# include "win32-vc60/vcl_valarray.h"
#elif defined(VCL_VC_70)
# include "win32-vc70/vcl_valarray.h"
#elif defined(VCL_VC_8) || defined(VCL_VC_9)
# include "win32-vc8/vcl_valarray.h"
#else
# include "iso/vcl_valarray.h"
#endif
#if !VCL_COMPLEX_POW_WORKS
// deal with corrections to pow(complex...)
# undef vcl_pow
# define vcl_pow vcl_pow
template<class T> inline vcl_valarray<T>
vcl_pow(const vcl_valarray<T>& x, const vcl_valarray<T>& y)
{ return std::pow(x, y); }
template<class T> inline vcl_valarray<T>
vcl_pow(const vcl_valarray<T>& x, const T& y)
{ return std::pow(x, y); }
template<class T> inline vcl_valarray<T>
vcl_pow(const T& x, const vcl_valarray<T>& y)
{ return std::pow(x, y); }
#endif
#endif // vcl_valarray_h_
|