1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-26 04:32:44 +01:00

[NFC] Fix "unused parameter" error revealed in the Linux self-build.

This commit is contained in:
Zahira Ammarguellat 2021-03-12 10:23:19 -08:00
parent 5aafd8a5a0
commit 6707ee0435
4 changed files with 5 additions and 5 deletions

View File

@ -258,7 +258,7 @@ template <typename... Ts> struct DenseMapInfo<std::tuple<Ts...>> {
}
template <unsigned I>
static unsigned getHashValueImpl(const Tuple &values, std::true_type) {
static unsigned getHashValueImpl(const Tuple &, std::true_type) {
return 0;
}
@ -276,7 +276,7 @@ template <typename... Ts> struct DenseMapInfo<std::tuple<Ts...>> {
}
template <unsigned I>
static bool isEqualImpl(const Tuple &lhs, const Tuple &rhs, std::true_type) {
static bool isEqualImpl(const Tuple &, const Tuple &, std::true_type) {
return true;
}

View File

@ -656,7 +656,7 @@ namespace detail {
template <typename... Ts, std::size_t... Indices>
hash_code hash_value_tuple_helper(const std::tuple<Ts...> &arg,
std::index_sequence<Indices...> indices) {
std::index_sequence<Indices...>) {
return hash_combine(std::get<Indices>(arg)...);
}

View File

@ -381,7 +381,7 @@ constexpr bool operator!=(NoneType, const Optional<T> &X) {
return X != None;
}
template <typename T> constexpr bool operator<(const Optional<T> &X, NoneType) {
template <typename T> constexpr bool operator<(const Optional<T> &, NoneType) {
return false;
}

View File

@ -398,7 +398,7 @@ constexpr inline std::enable_if_t<(N < 64), bool> isUInt(uint64_t X) {
return X < (UINT64_C(1) << (N));
}
template <unsigned N>
constexpr inline std::enable_if_t<N >= 64, bool> isUInt(uint64_t X) {
constexpr inline std::enable_if_t<N >= 64, bool> isUInt(uint64_t) {
return true;
}