Skip to content

Commit a2303d2

Browse files
Reorder includes in system_util.cc.
This change reorders includes to follow standard practices, moving absl/strings/str_cat.h out of a platform-specific block and alphabetizing mozc/src/base includes. This will fix build failures on several environments. #codehealth PiperOrigin-RevId: 905275928
1 parent 099af0c commit a2303d2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/base/system_util.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,13 @@
3636
#include "absl/log/check.h"
3737
#include "absl/log/log.h"
3838
#include "absl/status/status.h"
39+
#include "absl/strings/str_cat.h"
3940
#include "absl/strings/string_view.h"
4041
#include "absl/synchronization/mutex.h"
4142
#include "base/const.h"
4243
#include "base/environ.h"
43-
#include "base/port.h"
4444
#include "base/file_util.h"
45+
#include "base/port.h"
4546
#include "base/singleton.h"
4647

4748
#ifdef __ANDROID__
@@ -69,7 +70,6 @@
6970

7071
#include <memory> // for unique_ptr
7172

72-
#include "absl/strings/str_cat.h"
7373
#include "base/win32/wide_char.h"
7474
#include "base/win32/win_util.h"
7575
#else // _WIN32

0 commit comments

Comments
 (0)