Skip to content

Commit

Permalink
Merge pull request #1066 from timblechmann/topic/supernova_for_master
Browse files Browse the repository at this point in the history
supernova: make apple clang happy
  • Loading branch information
danstowell committed Mar 27, 2014
2 parents 295ed45 + cfbcea2 commit c7600cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/supernova/utilities/malloc_aligned.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ class aligned_allocator
template< class U, class... Args >
void construct(U * p, Args&& ... args)
{
::new(p) U(std::forward<Args>(args)...);
::new((void*)p) U(std::forward<Args>(args)...);
}
#endif

Expand Down

0 comments on commit c7600cc

Please sign in to comment.