mirror of
https://github.com/transmission/transmission
synced 2024-12-22 07:42:37 +00:00
237223aeaf
* refactor: use std::set instead of QSet in WatchDir.cc * refactor: use std::set instead of QSet in FileTreeView.cc * refactor: use std::set instead of QSet in ColumnResizer.cc * refactor: use std::set instead of QSet in Prefs.cc * chore: fix rebase error that changed libsmall snapshot * refactor: more replace QSet with std::set
10 lines
196 B
C++
10 lines
196 B
C++
#pragma once
|
|
|
|
#include <set>
|
|
#include <unordered_set>
|
|
|
|
#include <libtransmission/transmission.h>
|
|
|
|
using torrent_ids_t = std::unordered_set<tr_torrent_id_t>;
|
|
|
|
using file_indices_t = std::set<int>;
|