diff options
author | Lei Zhang <thestig@chromium.org> | 2017-09-14 18:26:26 -0700 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-09-15 02:03:25 +0000 |
commit | 69fe7110e6af83ca82d71275a70ae4983daddd6f (patch) | |
tree | 949485a0a401a14b9d90876cd5c277f4f7a911fa /xfa/fgas | |
parent | b1f9205bb1a0671c31e44e7362784c770bf2a948 (diff) | |
download | pdfium-69fe7110e6af83ca82d71275a70ae4983daddd6f.tar.xz |
Make static const char* arrays more const.
Change-Id: I87b5e6cefe973b82b4868e56fc5285c95c53a12b
Reviewed-on: https://pdfium-review.googlesource.com/12550
Commit-Queue: Lei Zhang <thestig@chromium.org>
Reviewed-by: Henrique Nakashima <hnakashima@chromium.org>
Diffstat (limited to 'xfa/fgas')
-rw-r--r-- | xfa/fgas/font/cfgas_fontmgr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xfa/fgas/font/cfgas_fontmgr.cpp b/xfa/fgas/font/cfgas_fontmgr.cpp index 4b395c9ddf..9cb772ecba 100644 --- a/xfa/fgas/font/cfgas_fontmgr.cpp +++ b/xfa/fgas/font/cfgas_fontmgr.cpp @@ -443,7 +443,7 @@ FX_LPEnumAllFonts FX_GetDefFontEnumerator() { namespace { -const char* g_FontFolders[] = { +constexpr const char* g_FontFolders[] = { #if _FXM_PLATFORM_ == _FXM_PLATFORM_LINUX_ "/usr/share/fonts", "/usr/share/X11/fonts/Type1", "/usr/share/X11/fonts/TTF", "/usr/local/share/fonts", |