Replacing accidental use of C++11 auto
This commit is contained in:
parent
0d9d697b50
commit
e46ea47df2
@ -60,11 +60,10 @@ FindWithDefault( Container &container,
|
|||||||
const Key &key,
|
const Key &key,
|
||||||
const typename Container::mapped_type &value )
|
const typename Container::mapped_type &value )
|
||||||
{
|
{
|
||||||
auto it = container.find( key );
|
typename Container::iterator it = container.find( key );
|
||||||
return it != container.end() ? *it : value;
|
return it != container.end() ? *it : value;
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace YouCompleteMe
|
} // namespace YouCompleteMe
|
||||||
|
|
||||||
#endif /* end of include guard: UTILS_H_KEPMRPBH */
|
#endif /* end of include guard: UTILS_H_KEPMRPBH */
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user