diff options
| author | 2015-08-16 10:54:27 -0700 | |
|---|---|---|
| committer | 2015-08-16 10:54:27 -0700 | |
| commit | b3e64813f5dcff5c29aea488a9feb2eef6265e50 (patch) | |
| tree | 4f58e3ebb8e68911d0ea707aff3d4db8d382eac2 /src | |
| parent | Build fix for Debug configurations. (diff) | |
| parent | Fix Linux GCC 4.9 build (complaining about undeclared memset) (diff) | |
| download | yuzu-b3e64813f5dcff5c29aea488a9feb2eef6265e50.tar.gz yuzu-b3e64813f5dcff5c29aea488a9feb2eef6265e50.tar.xz yuzu-b3e64813f5dcff5c29aea488a9feb2eef6265e50.zip | |
Merge pull request #1036 from LittleWhite-tb/fix-compilation-memset
Fix Linux GCC 4.9 build (complaining about undeclared memset)
Diffstat (limited to 'src')
| -rw-r--r-- | src/video_core/debug_utils/debug_utils.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/video_core/debug_utils/debug_utils.cpp b/src/video_core/debug_utils/debug_utils.cpp index e4b397303..21664aab6 100644 --- a/src/video_core/debug_utils/debug_utils.cpp +++ b/src/video_core/debug_utils/debug_utils.cpp | |||
| @@ -4,9 +4,10 @@ | |||
| 4 | 4 | ||
| 5 | #include <algorithm> | 5 | #include <algorithm> |
| 6 | #include <condition_variable> | 6 | #include <condition_variable> |
| 7 | #include <cstring> | ||
| 8 | #include <fstream> | ||
| 7 | #include <list> | 9 | #include <list> |
| 8 | #include <map> | 10 | #include <map> |
| 9 | #include <fstream> | ||
| 10 | #include <mutex> | 11 | #include <mutex> |
| 11 | #include <string> | 12 | #include <string> |
| 12 | 13 | ||