summaryrefslogtreecommitdiff
path: root/src/zap/zapmetadata.h
diff options
context:
space:
mode:
authorMichaƂ Janiszewski <janisozaur@users.noreply.github.com>2018-10-31 21:30:48 +0100
committerJan Kotas <jkotas@microsoft.com>2018-10-31 13:30:48 -0700
commita374692390570b3efe4d4b4fe8894fd9c0b34d0f (patch)
treeb4a530cb3c931c0066df13aaf0cc5a44e92f898b /src/zap/zapmetadata.h
parentb042303bf1139472854accc8fe444f4ed442da23 (diff)
downloadcoreclr-a374692390570b3efe4d4b4fe8894fd9c0b34d0f.tar.gz
coreclr-a374692390570b3efe4d4b4fe8894fd9c0b34d0f.tar.bz2
coreclr-a374692390570b3efe4d4b4fe8894fd9c0b34d0f.zip
Remove superfluous 'const' qualifier from trivial return types (#20652)
The 'const' used in this context has no meaning
Diffstat (limited to 'src/zap/zapmetadata.h')
-rw-r--r--src/zap/zapmetadata.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/zap/zapmetadata.h b/src/zap/zapmetadata.h
index 3788138897..5ef6bd4dc3 100644
--- a/src/zap/zapmetadata.h
+++ b/src/zap/zapmetadata.h
@@ -212,7 +212,7 @@ private:
return (count_t)k;
}
- static const element_t Null() { LIMITED_METHOD_CONTRACT; return NULL; }
+ static element_t Null() { LIMITED_METHOD_CONTRACT; return NULL; }
static bool IsNull(const element_t &e) { LIMITED_METHOD_CONTRACT; return e == NULL; }
};