summaryrefslogtreecommitdiff
path: root/src/common/utf8.cpp
diff options
context:
space:
mode:
authorGravatar bunnei2014-08-17 20:32:04 -0400
committerGravatar bunnei2014-08-17 20:32:04 -0400
commitb26f25356d4463b5e4ccd36cf7365342d7306e7f (patch)
tree1cbe356089890c22e3f1e4084891f306d6e62d97 /src/common/utf8.cpp
parentMerge pull request #53 from lioncash/memmap (diff)
parentCommon: Move remaining C header includes over to their C++ equivalent (diff)
downloadyuzu-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.cpp8
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>