| Index: webrtc/libjingle/xmpp/xmpptask.h
|
| diff --git a/webrtc/libjingle/xmpp/xmpptask.h b/webrtc/libjingle/xmpp/xmpptask.h
|
| index 5b97e89c977567308ec9a629ab4eb64b78bbb86e..36351b7fa8f7b5c21bb6175c3ead6e277e83236f 100644
|
| --- a/webrtc/libjingle/xmpp/xmpptask.h
|
| +++ b/webrtc/libjingle/xmpp/xmpptask.h
|
| @@ -119,7 +119,7 @@ class XmppTask : public XmppTaskBase,
|
| std::string task_id() const { return id_; }
|
| void set_task_id(std::string id) { id_ = id; }
|
|
|
| -#ifdef _DEBUG
|
| +#if !defined(NDEBUG)
|
| void set_debug_force_timeout(const bool f) { debug_force_timeout_ = f; }
|
| #endif
|
|
|
| @@ -162,7 +162,7 @@ private:
|
| rtc::scoped_ptr<XmlElement> next_stanza_;
|
| std::string id_;
|
|
|
| -#ifdef _DEBUG
|
| +#if !defined(NDEBUG)
|
| bool debug_force_timeout_;
|
| #endif
|
| };
|
|
|