Author: [email protected]
Date: Mon Mar 23 15:35:01 2009
New Revision: 1580
Modified:
branches/bleeding_edge/src/debug-agent.h
Log:
Fixed Linux compiler warning.
[email protected]
Review URL: http://codereview.chromium.org/49010
Modified: branches/bleeding_edge/src/debug-agent.h
==============================================================================
--- branches/bleeding_edge/src/debug-agent.h (original)
+++ branches/bleeding_edge/src/debug-agent.h Mon Mar 23 15:35:01 2009
@@ -43,7 +43,7 @@
class DebuggerAgent: public Thread {
public:
explicit DebuggerAgent(const char* name, int port)
- : port_(port), name_(StrDup(name)),
+ : name_(StrDup(name)), port_(port),
server_(OS::CreateSocket()), terminate_(false),
session_access_(OS::CreateMutex()), session_(NULL),
terminate_now_(OS::CreateSemaphore(0)) {}
--~--~---------~--~----~------------~-------~--~----~
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
-~----------~----~----~----~------~----~------~--~---