X-Git-Url: http://plrg.eecs.uci.edu/git/?p=folly.git;a=blobdiff_plain;f=folly%2FAtomicHashMap.h;h=449659f6c96fabbbf206b628a7935b5c44cc2501;hp=af8aa633f4a66c7409d2d7f245564e8c59a5a3e4;hb=e52b296424c9441b5595906674045e04c6ccf24a;hpb=adf4a5ac9d3604427c85dd92ec379e9d7a3a4a8a;ds=sidebyside diff --git a/folly/AtomicHashMap.h b/folly/AtomicHashMap.h index af8aa633..449659f6 100644 --- a/folly/AtomicHashMap.h +++ b/folly/AtomicHashMap.h @@ -1,5 +1,5 @@ /* - * Copyright 2017 Facebook, Inc. + * Copyright 2012-present Facebook, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -13,7 +13,6 @@ * See the License for the specific language governing permissions and * limitations under the License. */ - /* * AtomicHashMap -- * @@ -91,10 +90,11 @@ #include #include -#include -#include +#include #include #include +#include +#include namespace folly { @@ -149,7 +149,7 @@ namespace folly { // Thrown when insertion fails due to running out of space for // submaps. -struct AtomicHashMapFullError : std::runtime_error { +struct FOLLY_EXPORT AtomicHashMapFullError : std::runtime_error { explicit AtomicHashMapFullError() : std::runtime_error("AtomicHashMap is full") {}