mirror of https://github.com/KLayout/klayout.git
Fixed a compile issue
This commit is contained in:
parent
c6e7c47d6c
commit
fb9e0c4602
|
|
@ -355,7 +355,7 @@ public:
|
|||
std::pair<EdgePairs, EdgePairs> split_filter (const EdgePairFilterBase &filter) const
|
||||
{
|
||||
std::pair<db::EdgePairsDelegate *, db::EdgePairsDelegate *> p = mp_delegate->filtered_pair (filter);
|
||||
return std::pair (EdgePairs (p.first), EdgePairs (p.second));
|
||||
return std::make_pair (EdgePairs (p.first), EdgePairs (p.second));
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -477,7 +477,7 @@ public:
|
|||
std::pair<Edges, Edges> split_filter (const EdgeFilterBase &filter) const
|
||||
{
|
||||
std::pair<db::EdgesDelegate *, db::EdgesDelegate *> p = mp_delegate->filtered_pair (filter);
|
||||
return std::pair (Edges (p.first), Edges (p.second));
|
||||
return std::make_pair (Edges (p.first), Edges (p.second));
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -581,7 +581,7 @@ public:
|
|||
std::pair<Region, Region> split_filter (const PolygonFilterBase &filter) const
|
||||
{
|
||||
std::pair<db::RegionDelegate *, db::RegionDelegate *> p = mp_delegate->filtered_pair (filter);
|
||||
return std::pair (Region (p.first), Region (p.second));
|
||||
return std::make_pair (Region (p.first), Region (p.second));
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -342,7 +342,7 @@ public:
|
|||
std::pair<Texts, Texts> split_filter (const TextFilterBase &filter) const
|
||||
{
|
||||
std::pair<db::TextsDelegate *, db::TextsDelegate *> p = mp_delegate->filtered_pair (filter);
|
||||
return std::pair (Texts (p.first), Texts (p.second));
|
||||
return std::make_pair (Texts (p.first), Texts (p.second));
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in New Issue