Skip to content

Commit

Permalink
Remove unused and deprecated functionality
Browse files Browse the repository at this point in the history
  • Loading branch information
tmadlener committed Jun 13, 2023
1 parent 0e3b59e commit 6a95d2f
Showing 1 changed file with 0 additions and 96 deletions.
96 changes: 0 additions & 96 deletions Tracking/include/fpcompare.h
Original file line number Diff line number Diff line change
Expand Up @@ -122,102 +122,6 @@ bool less_equal (float a, float b)


} // namespace fpcompare


namespace fpcompare_fn {


struct equal
: public std::binary_function<double, double, bool>
{
bool
operator()(double a, double b) const
{ return fpcompare::equal (a, b); }
};


struct equalf
: public std::binary_function<float, float, bool>
{
bool
operator()(float a, float b) const
{ return fpcompare::equal (a, b); }
};


struct greater
: public std::binary_function<double, double, bool>
{
bool
operator()(double a, double b) const
{ return fpcompare::greater (a, b); }
};


struct greaterf
: public std::binary_function<float, float, bool>
{
bool
operator()(float a, float b) const
{ return fpcompare::greater (a, b); }
};


struct less
: public std::binary_function<double, double, bool>
{
bool
operator()(double a, double b) const
{ return fpcompare::less (a, b); }
};


struct lessf
: public std::binary_function<float, float, bool>
{
bool
operator()(float a, float b) const
{ return fpcompare::less (a, b); }
};


struct greater_equal
: public std::binary_function<double, double, bool>
{
bool
operator()(double a, double b) const
{ return fpcompare::greater_equal (a, b); }
};


struct greater_equalf
: public std::binary_function<float, float, bool>
{
bool
operator()(float a, float b) const
{ return fpcompare::greater_equal (a, b); }
};


struct less_equal
: public std::binary_function<double, double, bool>
{
bool
operator()(double a, double b) const
{ return fpcompare::less_equal (a, b); }
};


struct less_equalf
: public std::binary_function<float, float, bool>
{
bool
operator()(float a, float b) const
{ return fpcompare::less_equal (a, b); }
};


} // namespace fpcompare_fn
} // namespace CxxUtils


Expand Down

0 comments on commit 6a95d2f

Please sign in to comment.