Commit 1b5288e6 authored by Joe Loser's avatar Joe Loser Committed by Facebook Github Bot

Cut unneeded boost header from AtomicHashMap.h (#1018)

Summary:
- AtomicHashMap.h has an unneeded include for
  `<boost/type_traits/is_convertible.h`.
- Remove the include and add `<type_traits>` in `AtomicHashMap-inl.h`
  since it uses `std::is_convertible`.
Pull Request resolved: https://github.com/facebook/folly/pull/1018

Reviewed By: Orvid

Differential Revision: D14078944

Pulled By: yfeldblum

fbshipit-source-id: f1450166a5bedb279db71e9b4f915811c71e5f1a
parent 1252eb25
......@@ -20,6 +20,8 @@
#include <folly/detail/AtomicHashUtils.h>
#include <type_traits>
namespace folly {
// AtomicHashMap constructor -- Atomic wrapper that allows growth
......
......@@ -82,7 +82,6 @@
#define FOLLY_ATOMICHASHMAP_H_
#include <boost/iterator/iterator_facade.hpp>
#include <boost/type_traits/is_convertible.hpp>
#include <atomic>
#include <functional>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment