Skip to content

Commit

Permalink
fix: stdafx.h
Browse files Browse the repository at this point in the history
  • Loading branch information
FabianTerhorst committed Apr 14, 2024
1 parent d0ab47d commit 1674b8e
Show file tree
Hide file tree
Showing 9 changed files with 7 additions and 9 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,13 @@ jobs:
cc: gcc-9,
cxx: g++-9,
args: -DCMAKE_BUILD_TYPE=RelWithDebInfo,
nethost: nethost-linux,
}
- {
name: windows,
os: windows-latest,
cc: cl,
cxx: cl,
args: -DCMAKE_BUILD_TYPE=RelWithDebInfo -A x64 -T host=x64,
nethost: nethost-windows,
}
fail-fast: false
steps:
Expand Down
2 changes: 1 addition & 1 deletion src/asyncrt_utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
****/

#include "pplx/stdafx.h"
#include "stdafx.h"

#ifndef _WIN32
#if defined(__clang__)
Expand Down
2 changes: 1 addition & 1 deletion src/pplx.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
****/

#include "pplx/stdafx.h"
#include "stdafx.h"

#if !defined(_WIN32) || _MSC_VER < 1800 || CPPREST_FORCE_PPLX

Expand Down
2 changes: 1 addition & 1 deletion src/pplxapple.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
#include <pthread.h>
#include <dispatch/dispatch.h>
#include <libkern/OSAtomic.h>
#include "pplx/stdafx.h"
#include "stdafx.h"
#include "pplx/pplx.h"

// DEVNOTE:
Expand Down
2 changes: 1 addition & 1 deletion src/pplxlinux.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
****/

#include "pplx/stdafx.h"
#include "stdafx.h"
#include "pplx/pplx.h"
#include "pplx/threadpool.h"
#include "sys/syscall.h"
Expand Down
2 changes: 1 addition & 1 deletion src/pplxwin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
****/

#include "pplx/stdafx.h"
#include "stdafx.h"

#if !defined(_WIN32) || _MSC_VER < 1800 || CPPREST_FORCE_PPLX

Expand Down
2 changes: 1 addition & 1 deletion src/stdafx.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
// stdafx.cpp :
// Include the standard header and generate the precompiled header.

#include "pplx/stdafx.h"
#include "stdafx.h"


File renamed without changes.
2 changes: 1 addition & 1 deletion src/threadpool.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*
* =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+
**/
#include "pplx/stdafx.h"
#include "stdafx.h"

#if !defined(CPPREST_EXCLUDE_WEBSOCKETS) || !defined(_WIN32)
#include "pplx/threadpool.h"
Expand Down

0 comments on commit 1674b8e

Please sign in to comment.