summaryrefslogtreecommitdiff
path: root/fpdfsdk/include/pdfwindow/PWL_Utils.h
diff options
context:
space:
mode:
authorTom Sepez <tsepez@chromium.org>2015-04-07 16:05:12 -0700
committerTom Sepez <tsepez@chromium.org>2015-04-07 16:05:12 -0700
commit34f5fc0f2a18ab03613dc6ecaf4668392d0b4423 (patch)
tree694d49cd9851239d3ff1609109f0cfddbcb06e86 /fpdfsdk/include/pdfwindow/PWL_Utils.h
parente300c8c32d7386b32e160a7ecc4483adea378a70 (diff)
downloadpdfium-34f5fc0f2a18ab03613dc6ecaf4668392d0b4423.tar.xz
Fix windows compile class vs. struct confusion in e300c8c32d73
TBR=thestig@chromium.org Review URL: https://codereview.chromium.org/1068013002
Diffstat (limited to 'fpdfsdk/include/pdfwindow/PWL_Utils.h')
-rw-r--r--fpdfsdk/include/pdfwindow/PWL_Utils.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/fpdfsdk/include/pdfwindow/PWL_Utils.h b/fpdfsdk/include/pdfwindow/PWL_Utils.h
index 7f6c4ad97f..3eeaa7ac81 100644
--- a/fpdfsdk/include/pdfwindow/PWL_Utils.h
+++ b/fpdfsdk/include/pdfwindow/PWL_Utils.h
@@ -13,7 +13,7 @@
#include "PWL_Wnd.h"
class CFX_PathData;
-class CPWL_Color;
+struct CPWL_Color;
template<class T> T PWL_MIN (const T & i, const T & j) { return ((i < j) ? i : j); }
template<class T> T PWL_MAX (const T & i, const T & j) { return ((i > j) ? i : j); }