Fix another const bug in function. Thanks to Daniel Krugler for finding this and the previous bug.

llvm-svn: 113686
This commit is contained in:
Howard Hinnant 2010-09-11 15:33:21 +00:00
parent 2833e392ab
commit 37030a77a0

View File

@ -1141,9 +1141,9 @@ public:
// deleted overloads close possible hole in the type system
template<class _R2, class... _ArgTypes2>
bool operator==(const function<_R2(_ArgTypes2...)>&) = delete;
bool operator==(const function<_R2(_ArgTypes2...)>&) const = delete;
template<class _R2, class... _ArgTypes2>
bool operator!=(const function<_R2(_ArgTypes2...)>&) = delete;
bool operator!=(const function<_R2(_ArgTypes2...)>&) const = delete;
public:
// function invocation:
_R operator()(_ArgTypes...) const;