Fix compilation
This commit is contained in:
parent
d09cab2e21
commit
48821a6d2a
5 changed files with 5 additions and 6 deletions
|
@ -69,7 +69,7 @@ template <typename T, typename... Ts>
|
|||
struct ParamTuple<T, Ts...> {
|
||||
bool Parse(const base::ListValue& list,
|
||||
const base::ListValue::const_iterator& it) {
|
||||
return it != list.end() && GetValue(**it, &head) &&
|
||||
return it != list.end() && GetValue(*it, &head) &&
|
||||
tail.Parse(list, it + 1);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue