Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(732)

Unified Diff: xfa/src/fgas/src/crt/fx_stream.cpp

Issue 1411653003: Remove register keyword from xfa files (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@xfa
Patch Set: Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « xfa/src/fgas/src/crt/fx_memory.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: xfa/src/fgas/src/crt/fx_stream.cpp
diff --git a/xfa/src/fgas/src/crt/fx_stream.cpp b/xfa/src/fgas/src/crt/fx_stream.cpp
index 21b5ea3764cd53a92e0551c39446f3a147b947ec..11ce71f9a30639b26283ee6f7667c05384a68472 100644
--- a/xfa/src/fgas/src/crt/fx_stream.cpp
+++ b/xfa/src/fgas/src/crt/fx_stream.cpp
@@ -1175,12 +1175,12 @@ IFX_Stream* CFX_Stream::CreateSharedStream(FX_DWORD dwAccess,
(dwAccess & FX_STREAMACCESS_Write) != 0) {
return NULL;
}
- register int32_t iStart = m_iStart + iOffset;
- register int32_t iTotal = m_iStart + m_iLength;
+ int32_t iStart = m_iStart + iOffset;
+ int32_t iTotal = m_iStart + m_iLength;
if (iStart < m_iStart || iStart >= iTotal) {
return NULL;
}
- register int32_t iEnd = iStart + iLength;
+ int32_t iEnd = iStart + iLength;
if (iEnd < iStart || iEnd > iTotal) {
return NULL;
}
« no previous file with comments | « xfa/src/fgas/src/crt/fx_memory.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698