Skip to content
Commit 2c850c09 authored by Richard Trieu's avatar Richard Trieu
Browse files

Add a fixit suggest for missing case keywords inside a switch scope. For...

Add a fixit suggest for missing case keywords inside a switch scope.  For instance, in the following code, 'case ' will be suggested before the '1:'

switch (x) {
  1: return 0;
  default: return 1;
}

llvm-svn: 129943
parent 2048ea5e
Loading
Loading
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment