Wunused-function: Fixed all unused functions in src

This commit addresses all warnings emitted from -Wunused-function
in the C++ src.

Signed-off-by: Noel Eck <noel.eck@intel.com>
This commit is contained in:
Noel Eck
2016-11-02 21:55:19 -07:00
parent a3a1fdc81b
commit 1dd5cbb445
2 changed files with 44 additions and 48 deletions

View File

@ -42,11 +42,6 @@ using namespace std;
// conversion from fahrenheit to celsius and back
static float f2c(float f)
{
return ((f - 32.0) / (9.0 / 5.0));
}
static float c2f(float c)
{
return (c * (9.0 / 5.0) + 32.0);