Commit b8aa5fcd authored by Orvid King's avatar Orvid King Committed by facebook-github-bot-4

Removed an unneeded typename in dynamic.h

Summary: This `typename` qualifier was unneeded, and MSVC errors if it's there, so remove it.
Closes #275

Reviewed By: @yfeldblum

Differential Revision: D2284056

Pulled By: @sgolemon
parent 520e1276
......@@ -532,7 +532,7 @@ private:
* incomplete type right now). (Note that in contrast we know it
* is ok to do this with fbvector because we own it.)
*/
typename std::aligned_storage<
std::aligned_storage<
sizeof(std::unordered_map<int,int>),
alignof(std::unordered_map<int,int>)
>::type objectBuffer;
......
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