summaryrefslogtreecommitdiff
path: root/core/fxcrt/cfx_string_c_template.h
diff options
context:
space:
mode:
authorTom Sepez <tsepez@chromium.org>2017-03-31 10:32:07 -0700
committerChromium commit bot <commit-bot@chromium.org>2017-03-31 17:51:46 +0000
commitfcdb2df009796a78369a7fe8bcaab76b27f5450b (patch)
tree104104f6c1c4c1c68ef8e5b0c2bae93760e75005 /core/fxcrt/cfx_string_c_template.h
parentfc715c3c1d9c9c623c36ae9fc8b8aac0362e4c22 (diff)
downloadpdfium-fcdb2df009796a78369a7fe8bcaab76b27f5450b.tar.xz
Re-arrange fxcrt string files to match naming.
The top-level fx_string.h is kept to include all strings. Put all fx_atof code in fx_basic_util.cpp rather than header. Change-Id: I61fe768f2e1ddf8438d27e410929f4cff918a9a3 Reviewed-on: https://pdfium-review.googlesource.com/3530 Reviewed-by: Nicolás Peña <npm@chromium.org> Commit-Queue: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'core/fxcrt/cfx_string_c_template.h')
-rw-r--r--core/fxcrt/cfx_string_c_template.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/core/fxcrt/cfx_string_c_template.h b/core/fxcrt/cfx_string_c_template.h
index 3e3972ca92..b52817d790 100644
--- a/core/fxcrt/cfx_string_c_template.h
+++ b/core/fxcrt/cfx_string_c_template.h
@@ -167,4 +167,7 @@ inline bool operator!=(const T* lhs, const CFX_StringCTemplate<T>& rhs) {
extern template class CFX_StringCTemplate<char>;
extern template class CFX_StringCTemplate<wchar_t>;
+using CFX_ByteStringC = CFX_StringCTemplate<char>;
+using CFX_WideStringC = CFX_StringCTemplate<wchar_t>;
+
#endif // CORE_FXCRT_CFX_STRING_C_TEMPLATE_H_