mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-10 00:34:59 +01:00
Remove unused code.
git-svn-id: svn://localhost/ardour2/branches/3.0@10214 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
6e78d33a36
commit
fac2c044d1
2 changed files with 0 additions and 23 deletions
|
|
@ -146,7 +146,6 @@ class ExportFormatBase {
|
||||||
virtual ~ExportFormatBase ();
|
virtual ~ExportFormatBase ();
|
||||||
|
|
||||||
boost::shared_ptr<ExportFormatBase> get_intersection (ExportFormatBase const & other) const;
|
boost::shared_ptr<ExportFormatBase> get_intersection (ExportFormatBase const & other) const;
|
||||||
boost::shared_ptr<ExportFormatBase> get_difference (ExportFormatBase const & other) const;
|
|
||||||
boost::shared_ptr<ExportFormatBase> get_union (ExportFormatBase const & other) const;
|
boost::shared_ptr<ExportFormatBase> get_union (ExportFormatBase const & other) const;
|
||||||
|
|
||||||
bool endiannesses_empty () const { return endiannesses.empty (); }
|
bool endiannesses_empty () const { return endiannesses.empty (); }
|
||||||
|
|
@ -189,7 +188,6 @@ class ExportFormatBase {
|
||||||
|
|
||||||
enum SetOperation {
|
enum SetOperation {
|
||||||
SetUnion,
|
SetUnion,
|
||||||
SetDifference,
|
|
||||||
SetIntersection
|
SetIntersection
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -70,12 +70,6 @@ ExportFormatBase::get_intersection (ExportFormatBase const & other) const
|
||||||
return do_set_operation (other, SetIntersection);
|
return do_set_operation (other, SetIntersection);
|
||||||
}
|
}
|
||||||
|
|
||||||
boost::shared_ptr<ExportFormatBase>
|
|
||||||
ExportFormatBase::get_difference (ExportFormatBase const & other) const
|
|
||||||
{
|
|
||||||
return do_set_operation (other, SetDifference);
|
|
||||||
}
|
|
||||||
|
|
||||||
boost::shared_ptr<ExportFormatBase>
|
boost::shared_ptr<ExportFormatBase>
|
||||||
ExportFormatBase::get_union (ExportFormatBase const & other) const
|
ExportFormatBase::get_union (ExportFormatBase const & other) const
|
||||||
{
|
{
|
||||||
|
|
@ -101,9 +95,6 @@ ExportFormatBase::do_set_operation (ExportFormatBase const & other, SetOperation
|
||||||
case SetIntersection:
|
case SetIntersection:
|
||||||
std::set_intersection (start1, end1, start2, end2, insert);
|
std::set_intersection (start1, end1, start2, end2, insert);
|
||||||
break;
|
break;
|
||||||
case SetDifference:
|
|
||||||
std::set_difference (start1, end1, start2, end2, insert);
|
|
||||||
break;
|
|
||||||
case SetUnion:
|
case SetUnion:
|
||||||
std::set_union (start1, end1, start2, end2, insert);
|
std::set_union (start1, end1, start2, end2, insert);
|
||||||
break;
|
break;
|
||||||
|
|
@ -122,9 +113,6 @@ ExportFormatBase::do_set_operation (ExportFormatBase const & other, SetOperation
|
||||||
case SetIntersection:
|
case SetIntersection:
|
||||||
std::set_intersection (start1, end1, start2, end2, insert);
|
std::set_intersection (start1, end1, start2, end2, insert);
|
||||||
break;
|
break;
|
||||||
case SetDifference:
|
|
||||||
std::set_difference (start1, end1, start2, end2, insert);
|
|
||||||
break;
|
|
||||||
case SetUnion:
|
case SetUnion:
|
||||||
std::set_union (start1, end1, start2, end2, insert);
|
std::set_union (start1, end1, start2, end2, insert);
|
||||||
break;
|
break;
|
||||||
|
|
@ -144,9 +132,6 @@ ExportFormatBase::do_set_operation (ExportFormatBase const & other, SetOperation
|
||||||
case SetIntersection:
|
case SetIntersection:
|
||||||
std::set_intersection (start1, end1, start2, end2, insert);
|
std::set_intersection (start1, end1, start2, end2, insert);
|
||||||
break;
|
break;
|
||||||
case SetDifference:
|
|
||||||
std::set_difference (start1, end1, start2, end2, insert);
|
|
||||||
break;
|
|
||||||
case SetUnion:
|
case SetUnion:
|
||||||
std::set_union (start1, end1, start2, end2, insert);
|
std::set_union (start1, end1, start2, end2, insert);
|
||||||
break;
|
break;
|
||||||
|
|
@ -165,9 +150,6 @@ ExportFormatBase::do_set_operation (ExportFormatBase const & other, SetOperation
|
||||||
case SetIntersection:
|
case SetIntersection:
|
||||||
std::set_intersection (start1, end1, start2, end2, insert);
|
std::set_intersection (start1, end1, start2, end2, insert);
|
||||||
break;
|
break;
|
||||||
case SetDifference:
|
|
||||||
std::set_difference (start1, end1, start2, end2, insert);
|
|
||||||
break;
|
|
||||||
case SetUnion:
|
case SetUnion:
|
||||||
std::set_union (start1, end1, start2, end2, insert);
|
std::set_union (start1, end1, start2, end2, insert);
|
||||||
break;
|
break;
|
||||||
|
|
@ -186,9 +168,6 @@ ExportFormatBase::do_set_operation (ExportFormatBase const & other, SetOperation
|
||||||
case SetIntersection:
|
case SetIntersection:
|
||||||
std::set_intersection (start1, end1, start2, end2, insert);
|
std::set_intersection (start1, end1, start2, end2, insert);
|
||||||
break;
|
break;
|
||||||
case SetDifference:
|
|
||||||
std::set_difference (start1, end1, start2, end2, insert);
|
|
||||||
break;
|
|
||||||
case SetUnion:
|
case SetUnion:
|
||||||
std::set_union (start1, end1, start2, end2, insert);
|
std::set_union (start1, end1, start2, end2, insert);
|
||||||
break;
|
break;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue