Run clang-format on all files

The main change here is to reorder headers.
This commit is contained in:
ridiculousfish
2019-10-13 15:50:48 -07:00
parent e73e9c3e2e
commit 82eca4bc86
110 changed files with 250 additions and 171 deletions

View File

@@ -1,16 +1,17 @@
// Library for pooling common strings.
#include "config.h" // IWYU pragma: keep
#include "intern.h"
#include <stddef.h>
#include <cwchar>
#include <algorithm>
#include <cwchar>
#include <memory>
#include <vector>
#include "common.h"
#include "fallback.h" // IWYU pragma: keep
#include "intern.h"
bool string_less_than_string(const wchar_t *a, const wchar_t *b) { return std::wcscmp(a, b) < 0; }