commit | e39e9379119b99c2bad7613b8cd32c11482b9558 | [log] [tgz] |
---|---|---|
author | David Reiss <dreiss@apache.org> | Thu May 01 05:52:48 2008 +0000 |
committer | David Reiss <dreiss@apache.org> | Thu May 01 05:52:48 2008 +0000 |
tree | 9247055d9281c2092c68306010ee529bc9022e52 | |
parent | 64120001437477569524be5cfc1f5054b27ee807 [diff] |
Remove a few unnecessary includes to speed up compiles. git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665673 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/lib/cpp/src/protocol/TProtocolException.h b/lib/cpp/src/protocol/TProtocolException.h index 0532ec5..ea0ae21 100644 --- a/lib/cpp/src/protocol/TProtocolException.h +++ b/lib/cpp/src/protocol/TProtocolException.h
@@ -7,7 +7,6 @@ #ifndef _THRIFT_PROTOCOL_TPROTOCOLEXCEPTION_H_ #define _THRIFT_PROTOCOL_TPROTOCOLEXCEPTION_H_ 1 -#include <boost/lexical_cast.hpp> #include <string> namespace facebook { namespace thrift { namespace protocol {
diff --git a/lib/cpp/src/transport/THttpClient.cpp b/lib/cpp/src/transport/THttpClient.cpp index 901a4e0..a294093 100644 --- a/lib/cpp/src/transport/THttpClient.cpp +++ b/lib/cpp/src/transport/THttpClient.cpp
@@ -5,6 +5,7 @@ // http://developers.facebook.com/thrift/ #include <cstdlib> +#include <sstream> #include "THttpClient.h" #include "TSocket.h"
diff --git a/lib/cpp/src/transport/TSocket.cpp b/lib/cpp/src/transport/TSocket.cpp index 6a16664..3566253 100644 --- a/lib/cpp/src/transport/TSocket.cpp +++ b/lib/cpp/src/transport/TSocket.cpp
@@ -15,6 +15,7 @@ #include <unistd.h> #include <errno.h> #include <fcntl.h> +#include <sstream> #include "concurrency/Monitor.h" #include "TSocket.h"
diff --git a/lib/cpp/src/transport/TTransportException.h b/lib/cpp/src/transport/TTransportException.h index 09129ec..2854761 100644 --- a/lib/cpp/src/transport/TTransportException.h +++ b/lib/cpp/src/transport/TTransportException.h
@@ -7,7 +7,6 @@ #ifndef _THRIFT_TRANSPORT_TTRANSPORTEXCEPTION_H_ #define _THRIFT_TRANSPORT_TTRANSPORTEXCEPTION_H_ 1 -#include <boost/lexical_cast.hpp> #include <string> #include <Thrift.h>