File tree 1 file changed +4
-5
lines changed
include/boost/geometry/srs/projections
1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change 10
10
#ifndef BOOST_GEOMETRY_PROJECTIONS_CODE_HPP
11
11
#define BOOST_GEOMETRY_PROJECTIONS_CODE_HPP
12
12
13
+ #include < cstdint>
13
14
14
15
#include < boost/geometry/srs/projections/dpar.hpp>
15
16
16
-
17
17
namespace boost { namespace geometry { namespace projections
18
18
{
19
19
20
-
21
20
#ifndef DOXYGEN_NO_DETAIL
22
21
namespace detail
23
22
{
@@ -43,10 +42,10 @@ namespace detail
43
42
};
44
43
45
44
int code;
46
- int parameter_count;
45
+ std:: int8_t parameter_count;
47
46
// Not bundling the following together into a struct to avoid 8-byte-alignment.
48
- int parameter_ids[MaxParams];
49
- char parameter_variant_tags[MaxParams];
47
+ std:: int16_t parameter_ids[MaxParams];
48
+ std:: int8_t parameter_variant_tags[MaxParams];
50
49
parameter_variant parameters[MaxParams];
51
50
};
52
51
You can’t perform that action at this time.
0 commit comments