Commit 2a6bb416 authored by Yedidya Feldblum's avatar Yedidya Feldblum Committed by Facebook GitHub Bot

Fix StaticSingletonManager::create_<true>

Summary: [Folly] Fix `StaticSingletonManager::create_<true>` which is missing the `noexcept` specification.

Reviewed By: Mizuchi, xavierd

Differential Revision: D23552042

fbshipit-source-id: 629ad215602125a3e6322b36948df78c62fbef15
parent fef268ac
......@@ -67,7 +67,7 @@ void* StaticSingletonManagerWithRtti::create_(Arg& arg) noexcept(Noexcept) {
}
template void* StaticSingletonManagerWithRtti::create_<false>(Arg& arg);
template void* StaticSingletonManagerWithRtti::create_<true>(Arg& arg);
template void* StaticSingletonManagerWithRtti::create_<true>(Arg& arg) noexcept;
} // 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