Skip to content
Merged
Changes from all commits
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
4 changes: 2 additions & 2 deletions subprocess.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ Documentation for C++ subprocessing libraray.

extern "C" {
#ifdef __USING_WINDOWS__
#include <Windows.h>
#include <windows.h>
#include <io.h>
#include <cwchar>

Expand Down Expand Up @@ -155,7 +155,7 @@ class OSError: public std::runtime_error
//--------------------------------------------------------------------

//Environment Variable types
#ifndef _MSC_VER
#ifndef __USING_WINDOWS__
using platform_str_t = std::string;
using platform_char_t = char;
#else
Expand Down