From: Orvid King Date: Wed, 29 Jul 2015 23:57:06 +0000 (-0700) Subject: Removed an unneeded typename in dynamic.h X-Git-Tag: v0.53.0~29 X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=b8aa5fcd86c0d7bce9952a3b9829dd0f48aec652;p=folly.git 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 --- diff --git a/folly/dynamic.h b/folly/dynamic.h index 5bd36f4c..35ef9b5c 100644 --- a/folly/dynamic.h +++ b/folly/dynamic.h @@ -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), alignof(std::unordered_map) >::type objectBuffer;