diff options
-rw-r--r-- | llvm/include/llvm/ADT/PointerEmbeddedInt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/llvm/ADT/PointerEmbeddedInt.h b/llvm/include/llvm/ADT/PointerEmbeddedInt.h index 8781d1803ac..7f86bf842b1 100644 --- a/llvm/include/llvm/ADT/PointerEmbeddedInt.h +++ b/llvm/include/llvm/ADT/PointerEmbeddedInt.h @@ -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); } }; |