Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove unnecessary #include "awint.hpp" #4015

Merged
merged 2 commits into from
Sep 14, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions stl/src/cthread.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@

#include <Windows.h>

#include "awint.hpp"

namespace {
using _Thrd_start_t = int (*)(void*);

Expand Down
2 changes: 0 additions & 2 deletions stl/src/dllmain.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@

#include <Windows.h>

#include "awint.hpp"

#ifdef _CRT_APP
// free static resource used by causality
extern "C" void __cdecl __crtCleanupCausalityStaticFactories();
Expand Down
2 changes: 1 addition & 1 deletion stl/src/primitives.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#include <exception>
#include <new>

#include "awint.hpp"
#include <Windows.h>

namespace Concurrency {
namespace details {
Expand Down
1 change: 0 additions & 1 deletion stl/src/taskscheduler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@

#include <Windows.h>

#include "awint.hpp"
#include "init_locks.hpp"

#pragma warning(disable : 4074)
Expand Down
2 changes: 1 addition & 1 deletion stl/src/winapisupp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
// Prevent clang-format from reordering <AppModel.h> before <Windows.h>
#include <Windows.h>
#include <AppModel.h> // for APPMODEL_ERROR_NO_PACKAGE
#include "awint.hpp"
#include <internal_shared.h>
#include <cstdlib>
#include <yvals.h>
grcm10 marked this conversation as resolved.
Show resolved Hide resolved
// clang-format on

#pragma warning(push)
Expand Down
2 changes: 0 additions & 2 deletions stl/src/xalloc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@

#include <Windows.h>

#include "awint.hpp"

namespace stdext {
namespace threads {

Expand Down
2 changes: 1 addition & 1 deletion stl/src/xdateord.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

#include <locale>

#include "awint.hpp"
#include <Windows.h>

_EXTERN_C_UNLESS_PURE

Expand Down
2 changes: 1 addition & 1 deletion stl/src/xgetwctype.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#include <__msvc_xlocinfo_types.hpp>
#include <cwchar>

#include "awint.hpp"
#include <Windows.h>

_EXTERN_C_UNLESS_PURE

Expand Down
2 changes: 0 additions & 2 deletions stl/src/xmtx.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@

#include "xmtx.hpp"

#include "awint.hpp"

_EXTERN_C_UNLESS_PURE

// Win32 critical sections are recursive
Expand Down
2 changes: 1 addition & 1 deletion stl/src/xonce.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

#include <mutex>

#include "awint.hpp"
#include <Windows.h>

namespace {
struct _Xfg_trampoline_parameter {
Expand Down