diff options
author | Alex Lorenz <arphaman@gmail.com> | 2016-10-04 16:06:37 +0000 |
---|---|---|
committer | Alex Lorenz <arphaman@gmail.com> | 2016-10-04 16:06:37 +0000 |
commit | 9e5afc4a2c8d1dff4b8626d5003707c5a97ccd0e (patch) | |
tree | f83bfcc93d2dd3c782d625660d1c4e4d2164bd77 | |
parent | d2c0c25be4609f5e49f5a2976f0f887a75abfc62 (diff) | |
download | bcm5719-llvm-9e5afc4a2c8d1dff4b8626d5003707c5a97ccd0e.tar.gz bcm5719-llvm-9e5afc4a2c8d1dff4b8626d5003707c5a97ccd0e.zip |
[Sema] Format a comment line so that it fits 80 columns. NFC
llvm-svn: 283228
-rw-r--r-- | clang/include/clang/Sema/Sema.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/clang/include/clang/Sema/Sema.h b/clang/include/clang/Sema/Sema.h index b035a5aa068..f7c1313d8f1 100644 --- a/clang/include/clang/Sema/Sema.h +++ b/clang/include/clang/Sema/Sema.h @@ -9812,8 +9812,9 @@ public: /// \brief This function checks if the expression is in the sef of potentially /// misaligned members and it is converted to some pointer type T with lower - /// or equal alignment requirements. If so it removes it. This is used when - /// we do not want to diagnose such misaligned access (e.g. in conversions to void*). + /// or equal alignment requirements. If so it removes it. This is used when + /// we do not want to diagnose such misaligned access (e.g. in conversions to + /// void*). void DiscardMisalignedMemberAddress(const Type *T, Expr *E); /// \brief This function calls Action when it determines that E designates a |