]> granicus.if.org Git - clang/commit
Fix dereference of pointers in throw statements.
authorManuel Klimek <klimek@google.com>
Mon, 17 Jul 2017 15:27:53 +0000 (15:27 +0000)
committerManuel Klimek <klimek@google.com>
Mon, 17 Jul 2017 15:27:53 +0000 (15:27 +0000)
commit9359793849d473e257cc7b050e2dbe65072c15ac
tree7745d8e9c2aa5d8611eae86d2a95487bb02549f9
parente145b58944660392991fb9dc7993938d5a33e206
Fix dereference of pointers in throw statements.

Before:
  throw * x;

After:
  throw *x;

Patch by Erik Uhlmann.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@308185 91177308-0d34-0410-b5e6-96231b3b80d8
lib/Format/TokenAnnotator.cpp
unittests/Format/FormatTest.cpp