diff options
| author | 2014-08-17 20:32:04 -0400 | |
|---|---|---|
| committer | 2014-08-17 20:32:04 -0400 | |
| commit | b26f25356d4463b5e4ccd36cf7365342d7306e7f (patch) | |
| tree | 1cbe356089890c22e3f1e4084891f306d6e62d97 /src/common/utf8.cpp | |
| parent | Merge pull request #53 from lioncash/memmap (diff) | |
| parent | Common: Move remaining C header includes over to their C++ equivalent (diff) | |
| download | yuzu-b26f25356d4463b5e4ccd36cf7365342d7306e7f.tar.gz yuzu-b26f25356d4463b5e4ccd36cf7365342d7306e7f.tar.xz yuzu-b26f25356d4463b5e4ccd36cf7365342d7306e7f.zip | |
Merge pull request #51 from lioncash/pragma
Common: Move header guards over to pragma once.
Diffstat (limited to 'src/common/utf8.cpp')
| -rw-r--r-- | src/common/utf8.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/common/utf8.cpp b/src/common/utf8.cpp index fe5270183..c83824d35 100644 --- a/src/common/utf8.cpp +++ b/src/common/utf8.cpp | |||
| @@ -18,10 +18,10 @@ | |||
| 18 | #undef max | 18 | #undef max |
| 19 | #endif | 19 | #endif |
| 20 | 20 | ||
| 21 | #include <stdlib.h> | 21 | #include <cstdlib> |
| 22 | #include <stdio.h> | 22 | #include <cstdio> |
| 23 | #include <string.h> | 23 | #include <cstring> |
| 24 | #include <stdarg.h> | 24 | #include <cstdarg> |
| 25 | 25 | ||
| 26 | #include <algorithm> | 26 | #include <algorithm> |
| 27 | #include <string> | 27 | #include <string> |