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

Unified Diff: snapshot/cpu_context.cc

Issue 819703002: win: Avoid signed/unsigned warning (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@master
Patch Set: Created 6 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: snapshot/cpu_context.cc
diff --git a/snapshot/cpu_context.cc b/snapshot/cpu_context.cc
index 506b07f30263f739b84d276e9894a87a60235a33..2f7ab976b2694f2002e6dd06e9423921c2499057 100644
--- a/snapshot/cpu_context.cc
+++ b/snapshot/cpu_context.cc
@@ -93,7 +93,7 @@ uint64_t CPUContext::InstructionPointer() const {
return x86_64->rip;
default:
NOTREACHED();
- return -1;
+ return ~0ull;
}
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698