Skip to content

Commit c370886

Browse files
committed
Optimize include directives.
1 parent c188f52 commit c370886

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

source/code/core/memsys/public/ice/mem.hxx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@
22
/// SPDX-License-Identifier: MIT
33

44
#pragma once
5-
#include <ice/os.hxx>
65
#include <ice/mem_info.hxx>
76
#include <ice/mem_utils.hxx>
87
#include <ice/mem_memory.hxx>
8+
#include <malloc.h>
9+
#include <new>
910

1011
namespace ice
1112
{

source/code/core/utils/public/ice/native_file.hxx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22
/// SPDX-License-Identifier: MIT
33

44
#pragma once
5-
#include <ice/os/unix.hxx>
6-
#include <ice/os/windows.hxx>
5+
#include <ice/os.hxx>
76
#include <ice/path_utils.hxx>
87
#include <ice/native_aio.hxx>
98
#include <ice/expected.hxx>

source/code/platforms/application/private/app_info.cxx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
#include <ice/app_info.hxx>
66
#include <ice/mem_allocator_stack.hxx>
77
#include <ice/string_utils.hxx>
8+
#include <ice/native_file.hxx>
89

910
namespace ice::app
1011
{

source/code/platforms/application/public/ice/app_info.hxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/// SPDX-License-Identifier: MIT
33

44
#pragma once
5-
#include <ice/native_file.hxx>
5+
#include <ice/path_utils.hxx>
66

77
namespace ice::app
88
{

source/code/tools/tool_base/public/ice/tool_app.hxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#pragma once
55
#include <ice/mem_allocator.hxx>
66
#include <ice/module_register.hxx>
7-
#include <ice/native_file.hxx>
7+
#include <ice/path_utils.hxx>
88
#include <ice/params.hxx>
99
#include <ice/tool.hxx>
1010

0 commit comments

Comments
 (0)