Commit aa472be6 authored by Dan Melnic's avatar Dan Melnic Committed by Facebook Github Bot

This fixes a linker issue

Summary: This fixes a linker issue

Reviewed By: tuomaspelkonen

Differential Revision: D10109866

fbshipit-source-id: bf4193eafc8eb6f75b84241ff6e2ef89ef866642
parent 4156360f
......@@ -119,14 +119,11 @@ FOLLY_STORAGE_CONSTEXPR const uint64_t
FingerprintTablePoly<127>::data[1]};
template <>
FOLLY_STORAGE_CONSTEXPR const poly_table<64> FingerprintTable<64>::table =
make_poly_table<63>();
const poly_table<64> FingerprintTable<64>::table = make_poly_table<63>();
template <>
FOLLY_STORAGE_CONSTEXPR const poly_table<96> FingerprintTable<96>::table =
make_poly_table<95>();
const poly_table<96> FingerprintTable<96>::table = make_poly_table<95>();
template <>
FOLLY_STORAGE_CONSTEXPR const poly_table<128> FingerprintTable<128>::table =
make_poly_table<127>();
const poly_table<128> FingerprintTable<128>::table = make_poly_table<127>();
} // namespace detail
} // namespace folly
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