mirror of
https://github.com/jankae/LibreVNA.git
synced 2026-04-07 15:33:51 +00:00
Removed warnings
This commit is contained in:
parent
3f7fb99f58
commit
532702f7fb
43 changed files with 191 additions and 142 deletions
|
|
@ -5,16 +5,16 @@
|
|||
|
||||
using namespace std;
|
||||
|
||||
SparamTraceSelector::SparamTraceSelector(const TraceModel &model, std::vector<int> used_ports, bool empty_allowed)
|
||||
SparamTraceSelector::SparamTraceSelector(const TraceModel &model, std::vector<unsigned int> used_ports, bool empty_allowed)
|
||||
: model(model),
|
||||
used_ports(used_ports),
|
||||
empty_allowed(empty_allowed)
|
||||
empty_allowed(empty_allowed),
|
||||
used_ports(used_ports)
|
||||
{
|
||||
createGUI();
|
||||
setInitialChoices();
|
||||
}
|
||||
|
||||
SparamTraceSelector::SparamTraceSelector(const TraceModel &model, std::set<int> used_ports, bool empty_allowed)
|
||||
SparamTraceSelector::SparamTraceSelector(const TraceModel &model, std::set<unsigned int> used_ports, bool empty_allowed)
|
||||
: model(model),
|
||||
empty_allowed(empty_allowed)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue