travisjeffery / ClangFormat-Xcode

Xcode plug-in to to use clang-format from in Xcode and consistently format your code with Clang
https://twitter.com/travisjeffery
MIT License
2.89k stars 288 forks source link

Bundled ClangFormat ignores certain files #42

Closed lboecker closed 10 years ago

lboecker commented 10 years ago

Not sure why. Try this example:

// Foo.cc
void foo() {
switch (something) {
case 1:
bar();
break;
case 2:
baz();
break;
}
}