llvm-project/clang/include
Richard Trieu f4b81d0029 Provide a better diagnostic when braces are put before the identifier.
When a user types:
  int [4] foo;
assume that the user means:
  int foo[4];

Update the information for 'foo' to prevent additional errors, and provide
a fix-it hint to move the brackets to the correct location.

Additionally, suggest parens for types that require it, such as:
  int [4] *foo;
to:
  int (*foo)[4];

llvm-svn: 211641
2014-06-24 23:14:24 +00:00
..
clang Provide a better diagnostic when braces are put before the identifier. 2014-06-24 23:14:24 +00:00
clang-c [OPENMP] Initial support for '#pragma omp for' (fixed incompatibility with MSVC). 2014-06-18 04:14:57 +00:00
CMakeLists.txt
Makefile