Skip to content

Commit

Permalink
Merge 0704f35 into cc12302
Browse files Browse the repository at this point in the history
  • Loading branch information
kirbyfan64 committed Apr 18, 2017
2 parents cc12302 + 0704f35 commit 3e8d7b8
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 2 deletions.
3 changes: 3 additions & 0 deletions Utilities/File.cpp
Expand Up @@ -6,8 +6,11 @@

#include <unordered_map>
#include <algorithm>
#include <cstring>
#include <cerrno>

using namespace std::literals::string_literals;

#ifdef _WIN32

#include <cwchar>
Expand Down
2 changes: 2 additions & 0 deletions Utilities/cond.cpp
@@ -1,6 +1,8 @@
#include "cond.h"
#include "sync.h"

#include <limits.h>

#ifndef _WIN32
#include <thread>
#endif
Expand Down
2 changes: 2 additions & 0 deletions Utilities/mutex.cpp
@@ -1,6 +1,8 @@
#include "mutex.h"
#include "sync.h"

#include <limits.h>

void shared_mutex::imp_lock_shared(s64 _old)
{
verify("shared_mutex overflow" HERE), _old <= c_max;
Expand Down
5 changes: 3 additions & 2 deletions rpcs3/Crypto/utils.cpp
Expand Up @@ -2,8 +2,9 @@
// Licensed under the terms of the GNU GPL, version 3
// http://www.gnu.org/licenses/gpl-3.0.txt

#include "utils.h"
#include <stdio.h>
#include "utils.h"
#include <cstring>
#include <stdio.h>
#include <time.h>

#include <memory>
Expand Down
1 change: 1 addition & 0 deletions rpcs3/Emu/Cell/PPUAnalyser.h
@@ -1,5 +1,6 @@
#pragma once

#include <string>
#include <map>
#include <set>

Expand Down

0 comments on commit 3e8d7b8

Please sign in to comment.