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

Unified Diff: test/cctest/test-debug.cc

Issue 101763003: Replace 'operator*' with explicit 'get' method on SmartPointer (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 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
Index: test/cctest/test-debug.cc
diff --git a/test/cctest/test-debug.cc b/test/cctest/test-debug.cc
index 8c6f4183900b9417b90eac08261a6fc02ce619bb..2f680eef9af7423a077134ee948eb6259d5689e8 100644
--- a/test/cctest/test-debug.cc
+++ b/test/cctest/test-debug.cc
@@ -6123,7 +6123,7 @@ class DebuggerAgentProtocolServerThread : public i::Thread {
void Run();
void WaitForListening() { listening_.Wait(); }
- char* body() { return *body_; }
+ char* body() { return body_.get(); }
private:
int port_;

Powered by Google App Engine
This is Rietveld 408576698