compaction: disambiguate type name
otherwise GCC-13 complains:
```
/home/kefu/dev/scylladb/compaction/compaction_state.hh:38:22: error: declaration of ‘compaction::owned_ranges_ptr compaction::compaction_state::owned_ranges_ptr’ changes meaning of ‘owned_ranges_ptr’ [-Wchanges-meaning]
38 | owned_ranges_ptr owned_ranges_ptr;
| ^~~~~~~~~~~~~~~~
```
Signed-off-by: Kefu Chai <kefu.chai@scylladb.com>
This commit is contained in:
@@ -35,7 +35,7 @@ struct compaction_state {
|
||||
compaction_backlog_tracker backlog_tracker;
|
||||
|
||||
std::unordered_set<sstables::shared_sstable> sstables_requiring_cleanup;
|
||||
owned_ranges_ptr owned_ranges_ptr;
|
||||
compaction::owned_ranges_ptr owned_ranges_ptr;
|
||||
|
||||
explicit compaction_state(table_state& t);
|
||||
compaction_state(compaction_state&&) = delete;
|
||||
|
||||
Reference in New Issue
Block a user