Hi Everyone,

alignof and alignas was added to Visual Studio 2015. Would someone add the 
following to the end of config.h and perform some testing under Visual 
Studio 2015 with it in effect:

// Hack... CRYPTOPP_ALIGN_DATA is defined earlier, before C++11 alignas 
availability is determined
#if defined(CRYPTOPP_CXX11_ALIGNAS)
# undef CRYPTOPP_ALIGN_DATA
# define CRYPTOPP_ALIGN_DATA(x) alignas(x)
#endif  // CRYPTOPP_CXX11_ALIGNAS

I'm interested in two things. First, does the code actually compile under 
Visual Studio 2015. Second, does the code enjoy a speedup when using it?

The speedup (or lack thereof) can be measured with a benchmark:

    ./cryptest.exe b <time in seconds> <cpu speed in GHz>

Jeff

-- 
-- 
You received this message because you are subscribed to the "Crypto++ Users" 
Google Group.
To unsubscribe, send an email to [email protected].
More information about Crypto++ and this group is available at 
http://www.cryptopp.com.
--- 
You received this message because you are subscribed to the Google Groups 
"Crypto++ Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to