Skip to content

Commit

Permalink
Remove duplicate definitions in intervalMissing.cpp.
Browse files Browse the repository at this point in the history
  • Loading branch information
sletz committed Apr 9, 2024
1 parent 0e040ff commit 569f302
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions compiler/interval/intervalMissing.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ interval interval_algebra::Output(const interval& c, const interval& y)
{
return interval(0);
}
/*
interval interval_algebra::Button(const interval& name)
{
return interval(0);
Expand All @@ -31,7 +32,7 @@ interval interval_algebra::Checkbox(const interval& name)
{
return interval(0);
}

*/
interval interval_algebra::HBargraph(const interval& name, const interval& lo, const interval& hi)
{
return interval(0);
Expand Down Expand Up @@ -97,7 +98,7 @@ interval interval_algebra::Waveform(const std::vector<interval>& w)
{
return interval(0);
}

/*
interval interval_algebra::VSlider(const interval& name, const interval& init, const interval& lo, const interval& hi,
const interval& step)
{
Expand Down Expand Up @@ -130,7 +131,7 @@ interval interval_algebra::Label(const std::string& x)
{
return interval(0);
}

*/
// Foreign functions
interval interval_algebra::ForeignFunction(const std::vector<interval>& ff)
{
Expand All @@ -145,4 +146,4 @@ interval interval_algebra::ForeignConst(const interval& type, const interval& na
return interval(0);
}

} // namespace itv
} // namespace itv

0 comments on commit 569f302

Please sign in to comment.