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

Unified Diff: courgette/ensemble.cc

Issue 1543643002: Switch to standard integer types in courgette/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix Created 5 years 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 | « courgette/ensemble.h ('k') | courgette/ensemble_apply.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: courgette/ensemble.cc
diff --git a/courgette/ensemble.cc b/courgette/ensemble.cc
index 669e264e5770dfcefe3d8eecfe7f223f499ca0c3..d5277a472d4ceade5246b61dcf4bf1718644f619 100644
--- a/courgette/ensemble.cc
+++ b/courgette/ensemble.cc
@@ -4,7 +4,9 @@
#include "courgette/ensemble.h"
-#include "base/basictypes.h"
+#include <stddef.h>
+#include <stdint.h>
+
#include "base/strings/string_number_conversions.h"
#include "courgette/region.h"
@@ -33,7 +35,7 @@ std::string Element::Name() const {
Status Ensemble::FindEmbeddedElements() {
size_t length = region_.length();
- const uint8* start = region_.start();
+ const uint8_t* start = region_.start();
size_t position = 0;
while (position < length) {
« no previous file with comments | « courgette/ensemble.h ('k') | courgette/ensemble_apply.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698