1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-02-01 05:01:59 +01:00

Mark count method const.

llvm-svn: 42639
This commit is contained in:
Chris Lattner 2007-10-05 17:40:38 +00:00
parent 821635b63f
commit c604dd270a

View File

@ -38,7 +38,7 @@ public:
TheMap.clear();
}
bool count(const ValueT &V) {
bool count(const ValueT &V) const {
return TheMap.count(V);
}