aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/SkString.cpp
diff options
context:
space:
mode:
authorGravatar Mike Klein <mtklein@chromium.org>2018-06-11 10:45:26 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2018-06-11 15:55:31 +0000
commit79aea6a147f87994963ea9a464647cd64e8d475d (patch)
tree92676711aa95882332aa4e322a3cca2d6b3f58d0 /src/core/SkString.cpp
parentf7c380e9c9f97269f1c6de1ddbb73fc1f82bcb44 (diff)
trim #include <new> from SkPostConfig.h
Change-Id: I693ddcd4ade101ba4eb4102e03adce183aa1d672 Reviewed-on: https://skia-review.googlesource.com/133829 Reviewed-by: Mike Klein <mtklein@chromium.org> Commit-Queue: Mike Klein <mtklein@chromium.org>
Diffstat (limited to 'src/core/SkString.cpp')
-rw-r--r--src/core/SkString.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/core/SkString.cpp b/src/core/SkString.cpp
index 707e8befb8..a6d9335318 100644
--- a/src/core/SkString.cpp
+++ b/src/core/SkString.cpp
@@ -5,12 +5,13 @@
* found in the LICENSE file.
*/
-#include "SkString.h"
-#include <stdarg.h>
-#include <cstdio>
#include "SkAtomics.h"
#include "SkSafeMath.h"
+#include "SkString.h"
#include "SkUtils.h"
+#include <cstdio>
+#include <new>
+#include <stdarg.h>
// number of bytes (on the stack) to receive the printf result
static const size_t kBufferSize = 1024;