Skip to content

Commit

Permalink
Remove unused headers in Type.h (facebookincubator#9338)
Browse files Browse the repository at this point in the history
Summary:
We need to keep the core headers as clean as possible to help improve build timing.

Pull Request resolved: facebookincubator#9338

Reviewed By: amitkdutta

Differential Revision: D55664484

Pulled By: kgpai

fbshipit-source-id: 4c8ff4701de26d8966795c0b12f9ef9acff90b9f
  • Loading branch information
majetideepak authored and Joe-Abraham committed Apr 4, 2024
1 parent 748e4c2 commit 64e5df7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
6 changes: 5 additions & 1 deletion velox/type/Type.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,16 @@
* limitations under the License.
*/

#include "velox/type/Type.h"
#include <velox/type/Type.h>

#include <boost/algorithm/string.hpp>
#include <fmt/format.h>
#include <folly/Demangle.h>
#include <re2/re2.h>

#include <sstream>
#include <typeindex>

#include "velox/type/TimestampConversion.h"

namespace std {
Expand Down
9 changes: 3 additions & 6 deletions velox/type/Type.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,10 @@
*/
#pragma once

#include <fmt/core.h>
#include <fmt/format.h>
#include <folly/Format.h>
#include <folly/CPortability.h>
#include <folly/Range.h>
#include <folly/String.h>
#include <folly/json.h>
#include <folly/dynamic.h>

#include <cstdint>
#include <cstring>
#include <ctime>
Expand All @@ -33,7 +31,6 @@
#include <typeindex>
#include <vector>

#include "folly/CPortability.h"
#include "velox/common/base/ClassName.h"
#include "velox/common/serialization/Serializable.h"
#include "velox/type/HugeInt.h"
Expand Down

0 comments on commit 64e5df7

Please sign in to comment.