aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlloyd <[email protected]>2014-02-09 17:01:36 +0000
committerlloyd <[email protected]>2014-02-09 17:01:36 +0000
commit65ebc0fe2b3a289c094a349a940b2a85bc4813bf (patch)
tree1e0e76f714b7afc5576d9811db682950f015bc32
parent4f3b0ce8fccd879791d5a701102ee0737f3509b1 (diff)
Clang fixes
-rw-r--r--src/lib/math/numbertheory/pow_mod.h1
-rw-r--r--src/lib/modes/aead/gcm/clmul/clmul.cpp1
2 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/math/numbertheory/pow_mod.h b/src/lib/math/numbertheory/pow_mod.h
index b78510793..388006dd5 100644
--- a/src/lib/math/numbertheory/pow_mod.h
+++ b/src/lib/math/numbertheory/pow_mod.h
@@ -64,7 +64,6 @@ class BOTAN_DLL Power_Mod
virtual ~Power_Mod();
private:
mutable Modular_Exponentiator* core;
- Usage_Hints hints;
};
/**
diff --git a/src/lib/modes/aead/gcm/clmul/clmul.cpp b/src/lib/modes/aead/gcm/clmul/clmul.cpp
index cc6d581e3..87a0a98ca 100644
--- a/src/lib/modes/aead/gcm/clmul/clmul.cpp
+++ b/src/lib/modes/aead/gcm/clmul/clmul.cpp
@@ -7,6 +7,7 @@
#include <botan/internal/clmul.h>
#include <immintrin.h>
+#include <wmmintrin.h>
namespace Botan {