summaryrefslogtreecommitdiffstats
path: root/gfx/2d/DataSurfaceHelpers.cpp
diff options
context:
space:
mode:
authorMoonchild <moonchild@palemoon.org>2020-05-14 18:34:06 +0000
committerMoonchild <moonchild@palemoon.org>2020-05-14 18:34:06 +0000
commit3b6fd3b6c03224aa0f28b06ef097eeecdecd1dc1 (patch)
treef0bafe7ca3c418c68d480e219107f8667c443240 /gfx/2d/DataSurfaceHelpers.cpp
parentf05391a69f38107ff3f70431032a5520741147d8 (diff)
downloadUXP-3b6fd3b6c03224aa0f28b06ef097eeecdecd1dc1.tar
UXP-3b6fd3b6c03224aa0f28b06ef097eeecdecd1dc1.tar.gz
UXP-3b6fd3b6c03224aa0f28b06ef097eeecdecd1dc1.tar.lz
UXP-3b6fd3b6c03224aa0f28b06ef097eeecdecd1dc1.tar.xz
UXP-3b6fd3b6c03224aa0f28b06ef097eeecdecd1dc1.zip
Issue # 80 - Fix up gfx/2d/DataSurfaceHelpers
De-unified build requires <string.h> instead of <cstring> to prevent stdlib confusion.
Diffstat (limited to 'gfx/2d/DataSurfaceHelpers.cpp')
-rw-r--r--gfx/2d/DataSurfaceHelpers.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/gfx/2d/DataSurfaceHelpers.cpp b/gfx/2d/DataSurfaceHelpers.cpp
index 87ef00fcd..99dfe063a 100644
--- a/gfx/2d/DataSurfaceHelpers.cpp
+++ b/gfx/2d/DataSurfaceHelpers.cpp
@@ -3,7 +3,7 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
-#include <cstring>
+#include <string.h>
#include "2D.h"
#include "DataSurfaceHelpers.h"