aboutsummaryrefslogtreecommitdiff
path: root/contrib/native
diff options
context:
space:
mode:
authorParth Chandra <parthc@apache.org>2018-02-27 17:31:51 +0530
committerArina Ielchiieva <arina.yelchiyeva@gmail.com>2018-03-03 19:47:45 +0200
commita3b0bf5970b6d84b29ce843af1fd5cacf62a13bd (patch)
treec8aac4fcd267e776c66c741c56db58704ff6189d /contrib/native
parent408942259800d9987f4e84b3cdbd47e29920e934 (diff)
DRILL-6188: Fix C++ client build on Centos7, OS X
closes #1132
Diffstat (limited to 'contrib/native')
-rw-r--r--contrib/native/client/src/clientlib/drillClientImpl.hpp1
-rw-r--r--contrib/native/client/src/clientlib/logger.hpp1
2 files changed, 1 insertions, 1 deletions
diff --git a/contrib/native/client/src/clientlib/drillClientImpl.hpp b/contrib/native/client/src/clientlib/drillClientImpl.hpp
index 2e7623e97..541c41efb 100644
--- a/contrib/native/client/src/clientlib/drillClientImpl.hpp
+++ b/contrib/native/client/src/clientlib/drillClientImpl.hpp
@@ -182,7 +182,6 @@ class DrillClientBaseHandle: public DrillClientQueryHandle {
virtual status_t notifyListener(ListenerValue v, DrillClientError* pErr);
virtual void signalError(DrillClientError* pErr);
- void setHasError(bool hasError) { m_bHasError = hasError; }
private:
Listener m_pApplicationListener;
diff --git a/contrib/native/client/src/clientlib/logger.hpp b/contrib/native/client/src/clientlib/logger.hpp
index 966e3a1d3..2eb98c0cf 100644
--- a/contrib/native/client/src/clientlib/logger.hpp
+++ b/contrib/native/client/src/clientlib/logger.hpp
@@ -19,6 +19,7 @@
#ifndef __LOGGER_H
#define __LOGGER_H
+#include <iostream>
#include <sstream>
#include <ostream>
#include <iostream>