File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
include/vclib/mesh/components Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -99,7 +99,7 @@ class BitFlags :
99
99
/* *
100
100
* @brief Static number of bits that can have custom meanings to the user
101
101
*/
102
- static const uint USER_BITS_NUMBER = sizeof (FT) * 8 - FIRST_USER_BIT;
102
+ inline static const uint USER_BITS_NUMBER = sizeof (FT) * 8 - FIRST_USER_BIT;
103
103
104
104
/* Constructors */
105
105
Original file line number Diff line number Diff line change @@ -137,7 +137,7 @@ class PolygonBitFlags :
137
137
/* *
138
138
* @brief Static number of bits that can have custom meanings to the user
139
139
*/
140
- static const uint USER_BITS_NUMBER = sizeof (FT) * 8 - FIRST_USER_BIT;
140
+ inline static const uint USER_BITS_NUMBER = sizeof (FT) * 8 - FIRST_USER_BIT;
141
141
142
142
/* *
143
143
* @brief Static number of bits for each edge that can have custom meanings
Original file line number Diff line number Diff line change @@ -117,7 +117,7 @@ class TriangleBitFlags :
117
117
/* *
118
118
* @brief Static number of bits that can have custom meanings to the user
119
119
*/
120
- static const uint USER_BITS_NUMBER = sizeof (FT) * 8 - FIRST_USER_BIT;
120
+ inline static const uint USER_BITS_NUMBER = sizeof (FT) * 8 - FIRST_USER_BIT;
121
121
122
122
/* Constructors */
123
123
You can’t perform that action at this time.
0 commit comments