File tree 4 files changed +6
-3
lines changed
4 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 15
15
#include " vtr_memory.h"
16
16
#include " vtr_strong_id_range.h"
17
17
#include " vtr_array_view.h"
18
- #include < iostream>
18
+ #include < iostream>
19
19
#include < optional>
20
+ #include < cstdint>
20
21
21
22
/* Main structure describing one routing resource node. Everything in *
22
23
* this structure should describe the graph -- information needed only *
Original file line number Diff line number Diff line change 7
7
#include < vector>
8
8
#include < array>
9
9
#include < map>
10
+ #include < cstdint>
10
11
#include " vtr_range.h"
11
12
#include " vtr_ndmatrix.h"
12
13
Original file line number Diff line number Diff line change @@ -238,11 +238,11 @@ class FlatRaggedMatrix {
238
238
return !(*this == other);
239
239
}
240
240
241
- int operator -(const RowLengthIterator& other) {
241
+ difference_type operator -(const RowLengthIterator& other) {
242
242
return irow_ - other.irow_ ;
243
243
}
244
244
245
- size_t operator *() {
245
+ value_type operator *() {
246
246
// Call the callback to get the row length
247
247
return callback_ (Index0 (irow_));
248
248
}
Original file line number Diff line number Diff line change 48
48
#include < unordered_map>
49
49
#include < stdexcept>
50
50
#include < climits>
51
+ #include < cstdint>
51
52
#include < algorithm>
52
53
#include < array>
53
54
You can’t perform that action at this time.
0 commit comments