mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-07-03 10:01:16 -03:00
Run clang-format on all files
The main change here is to reorder headers.
This commit is contained in:
@@ -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; }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user