File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -98,7 +98,7 @@ struct Format_Type
98
98
<
99
99
typename is_bit_aligned<typename get_pixel_type<View>::type>::type
100
100
>,
101
- is_floating_point<Channel>
101
+ std:: is_floating_point<Channel>
102
102
>::value
103
103
>::type
104
104
>
@@ -125,7 +125,7 @@ struct Format_Type
125
125
// return SAMPLEFORMAT_INT;
126
126
// }
127
127
//
128
- // else if( is_floating_point< Channel >::value )
128
+ // else if( std:: is_floating_point< Channel >::value )
129
129
// {
130
130
// return SAMPLEFORMAT_IEEEFP;
131
131
// }
Original file line number Diff line number Diff line change @@ -29,12 +29,12 @@ using byte_vector_t = std::vector<byte_t>;
29
29
30
30
}} // namespace boost::gil
31
31
32
- namespace boost {
32
+ namespace std {
33
33
34
- template <> struct is_floating_point <gil::float32_t > : std::true_type {};
35
- template <> struct is_floating_point <gil::float64_t > : std::true_type {};
34
+ template <> struct is_floating_point <boost:: gil::float32_t > : std::true_type {};
35
+ template <> struct is_floating_point <boost:: gil::float64_t > : std::true_type {};
36
36
37
- } // namespace boost
37
+ } // namespace std
38
38
39
39
namespace boost { namespace gil {
40
40
You can’t perform that action at this time.
0 commit comments