Skip to content

Commit

Permalink
[silgen] In SILGenApply.cpp, consistently indent classes in LLVM style.
Browse files Browse the repository at this point in the history
Some of the classes in this file were using LLVM style for long classes, i.e.:

```
namespace {
class Foo {
  ... long class ...
};
} // end anonymous namespace
```

Other places, we were adding a level of indentation, i.e.:

```
namespace {
  class Foo {
    ... long class ...
  };
} // end anonymous namespace
```

This PR just standardizes the classes in this file that follow the later style,
to instead follow the former style.
  • Loading branch information
gottesmm committed Feb 27, 2018
1 parent b74ed23 commit 1de4cc0
Showing 1 changed file with 255 additions and 263 deletions.
Loading

0 comments on commit 1de4cc0

Please sign in to comment.