changeset 254:7993dcea6284 draft

wrap sha256.cpp in FOURWAYSSE2 #ifdef git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@136 1a98c847-1fd6-4fd8-948a-caf3550aa51b
author s_nakamoto <s_nakamoto@1a98c847-1fd6-4fd8-948a-caf3550aa51b>
date Mon, 16 Aug 2010 13:37:00 +0000
parents 7cb07fd1a994
children 835b9dd8e8cd
files sha256.cpp
diffstat 1 files changed, 4 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/sha256.cpp
+++ b/sha256.cpp
@@ -2,6 +2,8 @@
 // Distributed under the MIT/X11 software license, see the accompanying
 // file license.txt or http://www.opensource.org/licenses/mit-license.php.
 
+#ifdef FOURWAYSSE2
+
 #include <string.h>
 #include <assert.h>
 
@@ -417,3 +419,5 @@
     }
 
 }
+
+#endif // FOURWAYSSE2