diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2017-10-26 16:48:57 -0400 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-10-26 21:07:36 +0000 |
commit | c94a793413938c4142bc8bedd40ae2fe2527f71a (patch) | |
tree | 9e938c2dcf0204508b52fedb7022e92e92bc55ba /fpdfsdk/javascript/cjs_font.cpp | |
parent | ef299534cce8cc42f1bd13665a75947c88195ce0 (diff) | |
download | pdfium-c94a793413938c4142bc8bedd40ae2fe2527f71a.tar.xz |
Make spec arrays const
This CL marks all of the Spec arrays as const.
Change-Id: Ie36f670a4230fcac2cba5544b9c6e5179b0c7073
Reviewed-on: https://pdfium-review.googlesource.com/16951
Commit-Queue: dsinclair <dsinclair@chromium.org>
Reviewed-by: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'fpdfsdk/javascript/cjs_font.cpp')
-rw-r--r-- | fpdfsdk/javascript/cjs_font.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fpdfsdk/javascript/cjs_font.cpp b/fpdfsdk/javascript/cjs_font.cpp index 5189666a8f..403da400d4 100644 --- a/fpdfsdk/javascript/cjs_font.cpp +++ b/fpdfsdk/javascript/cjs_font.cpp @@ -6,7 +6,7 @@ #include "fpdfsdk/javascript/cjs_font.h" -JSConstSpec CJS_Font::ConstSpecs[] = { +const JSConstSpec CJS_Font::ConstSpecs[] = { {"Times", JSConstSpec::String, 0, "Times-Roman"}, {"TimesB", JSConstSpec::String, 0, "Times-Bold"}, {"TimesI", JSConstSpec::String, 0, "Times-Italic"}, |