commit | 3bfb13d1a7a1d1677b3b3af9264f7cbecb6b71bd | [log] [tgz] |
---|---|---|
author | Vitaly Buka <vitalybuka@google.com> | Tue Nov 24 14:46:13 2015 -0800 |
committer | Alex Vakulenko <avakulenko@google.com> | Wed Nov 25 19:17:46 2015 +0000 |
tree | f5157604bf8f47280adf8c84f98d07bc78d669b1 | |
parent | c4305600835b91630f9ca4b10ad9070ea55a726c [diff] [blame] |
Fix GCC 4.7 errors GCC 4.7.2 fail overriding constructors defined with virtual and default. Debian build also fails linking without -lrt. INT64_C is not defined on Debian with 4.7.2. "ll" should be enough. Change-Id: Ia779f094ed64fc3b1941429485e81520d017c2f5 Reviewed-on: https://weave-review.googlesource.com/1671 Reviewed-by: Alex Vakulenko <avakulenko@google.com>
diff --git a/src/notification/xmpp_stream_parser.h b/src/notification/xmpp_stream_parser.h index 41faaff..b8f5723 100644 --- a/src/notification/xmpp_stream_parser.h +++ b/src/notification/xmpp_stream_parser.h
@@ -49,7 +49,7 @@ virtual void OnStanza(std::unique_ptr<XmlNode> stanza) = 0; protected: - virtual ~Delegate() = default; + virtual ~Delegate() {} }; explicit XmppStreamParser(Delegate* delegate);