Skip to content

Commit

Permalink
Remove unused parameter warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
Morwenn committed Nov 15, 2015
1 parent 7e1f0d8 commit b9d70d0
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions include/static_math/trigonometry.inl
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ namespace details
exponential() = delete;

template<typename T>
static constexpr auto compute(T x)
static constexpr auto compute(T)
-> T
{
return T();
Expand All @@ -281,14 +281,14 @@ namespace details
sine() = delete;

template<typename T>
static constexpr auto trig(T x)
static constexpr auto trig(T)
-> T
{
return T();
}

template<typename T>
static constexpr auto hyper(T x)
static constexpr auto hyper(T)
-> T
{
return T();
Expand All @@ -301,17 +301,17 @@ namespace details
cosine() = delete;

template<typename T>
static constexpr auto trig(T x)
static constexpr auto trig(T)
-> T
{
return T();
}

template<typename T>
static constexpr auto hyper(T x)
static constexpr auto hyper(T)
-> T
{
return T();
}
};
}
}

0 comments on commit b9d70d0

Please sign in to comment.