aboutsummaryrefslogtreecommitdiffstats
path: root/host/include/.clang-format
Commit message (Collapse)AuthorAgeFilesLines
* clang-format: Break after templatesMartin Braun2019-03-211-1/+1
| | | | | | | | | | | Before, code would get formatted thus: template <typename T> class X {} Now, it gets formatted as such: template <typename T> class X {}
* formatting: Add modified clang-format for headersMartin Braun2019-01-171-0/+94
Because our headers do not require C++11, they need a different syntax (e.g., vector<vector<int> >, note the space between the >). Since some editors automatically pick up a .clang-format from a parent dir, this helps when editing headers.