diff options
author | Louis Dionne <ldionne@apple.com> | 2018-12-21 17:32:23 +0000 |
---|---|---|
committer | Louis Dionne <ldionne@apple.com> | 2018-12-21 17:32:23 +0000 |
commit | 5517aa61723b54cfb1c8ece6c7b7436b8f3b435a (patch) | |
tree | f2fe09c1cf5227f4f4822f38613b2fc6001a44a4 /libcxx | |
parent | [SelectionDAG] Remove KnownBits output paramater version. (diff) | |
download | llvm-project-5517aa61723b54cfb1c8ece6c7b7436b8f3b435a.tar.gz llvm-project-5517aa61723b54cfb1c8ece6c7b7436b8f3b435a.tar.bz2 llvm-project-5517aa61723b54cfb1c8ece6c7b7436b8f3b435a.zip |
[NFC] Fix typo in comment
llvm-svn: 349932
Diffstat (limited to 'libcxx')
-rw-r--r-- | libcxx/include/variant | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/include/variant b/libcxx/include/variant index b33b1c40ae51..4a771dc63504 100644 --- a/libcxx/include/variant +++ b/libcxx/include/variant @@ -1066,7 +1066,7 @@ public: #ifndef _LIBCPP_NO_EXCEPTIONS // EXTENSION: When the move construction of `__lhs` into `__rhs` throws // and `__tmp` is nothrow move constructible then we move `__tmp` back - // into `__rhs` and provide the strong exception safety guarentee. + // into `__rhs` and provide the strong exception safety guarantee. try { this->__generic_construct(*__rhs, _VSTD::move(*__lhs)); } catch (...) { |