Fix a typo.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@260038 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Roman Divacky 2016-02-07 15:50:55 +00:00
parent 55cdcca8e2
commit 60973707ae

View File

@ -58,7 +58,7 @@ public:
Value = static_cast<uintptr_t>(I) << Shift;
}
// Note that this imilict conversion additionally allows all of the basic
// Note that this implicit conversion additionally allows all of the basic
// comparison operators to work transparently, etc.
operator IntT() const { return static_cast<IntT>(Value >> Shift); }
};