summaryrefslogtreecommitdiff
path: root/lib/Sema/SemaOverload.cpp
diff options
context:
space:
mode:
authorNico Weber <nicolasweber@gmx.de>2019-08-21 15:49:21 +0000
committerNico Weber <nicolasweber@gmx.de>2019-08-21 15:49:21 +0000
commit7eb3ca2f31b715ed0e84e9482961bb41fbf5b178 (patch)
tree8dd3a91257f4186421fd0be6a5d18f0a49fe89df /lib/Sema/SemaOverload.cpp
parent67cd113fbed93b8d63c918b02d777d6febd744e4 (diff)
downloadclang-7eb3ca2f31b715ed0e84e9482961bb41fbf5b178.tar.gz
clang: Fix typo in comment
(Sorry for all these commits; trying to sort out why svn doesn't want to store my password.) git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@369540 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema/SemaOverload.cpp')
-rw-r--r--lib/Sema/SemaOverload.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Sema/SemaOverload.cpp b/lib/Sema/SemaOverload.cpp
index 3e2657b46c..938606a847 100644
--- a/lib/Sema/SemaOverload.cpp
+++ b/lib/Sema/SemaOverload.cpp
@@ -7775,7 +7775,7 @@ class BuiltinOperatorOverloadBuilder {
static constexpr int ArithmeticTypesCap = 24;
SmallVector<CanQualType, ArithmeticTypesCap> ArithmeticTypes;
- // Define some indices used to iterate over the arithemetic types in
+ // Define some indices used to iterate over the arithmetic types in
// ArithmeticTypes. The "promoted arithmetic types" are the arithmetic
// types are that preserved by promotion (C++ [over.built]p2).
unsigned FirstIntegralType,