summaryrefslogtreecommitdiff
path: root/src/jit/jitstd
diff options
context:
space:
mode:
authorDmitry-Me <wipedout@yandex.ru>2015-10-02 17:26:47 +0300
committerDmitry-Me <wipedout@yandex.ru>2015-10-02 17:26:47 +0300
commitee3658bbbc60f7340810464d1152af3897efbb31 (patch)
tree0b0127b41278369a49b7488261b333b02b2dbe4a /src/jit/jitstd
parent13914f15dc9b8c7d87294bb97e6c8b2668b8ee38 (diff)
downloadcoreclr-ee3658bbbc60f7340810464d1152af3897efbb31.tar.gz
coreclr-ee3658bbbc60f7340810464d1152af3897efbb31.tar.bz2
coreclr-ee3658bbbc60f7340810464d1152af3897efbb31.zip
Impossible implicit downcast in assignment operator
Diffstat (limited to 'src/jit/jitstd')
-rw-r--r--src/jit/jitstd/unordered_set.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/jit/jitstd/unordered_set.h b/src/jit/jitstd/unordered_set.h
index 323f22ff67..265d3bcbe6 100644
--- a/src/jit/jitstd/unordered_set.h
+++ b/src/jit/jitstd/unordered_set.h
@@ -150,7 +150,8 @@ template <typename Value, typename Hash, typename Pred, typename Alloc>
unordered_set<Value, Hash, Pred, Alloc>&
unordered_set<Value, Hash, Pred, Alloc>::operator=(unordered_set const& other)
{
- return base_type::operator=(other);
+ base_type::operator=(other);
+ return *this;
}
} // end of namespace jitstd.