diff options
author | lloyd <[email protected]> | 2009-05-13 10:30:03 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2009-05-13 10:30:03 +0000 |
commit | 820df981410c6d7490fc3728a2d52ca1c59dceda (patch) | |
tree | f2f5ba8156635dc67382d33684d85ad9c0e6f645 /src/block/twofish | |
parent | 81e1bd8787ba9c2497d4206b76d00aa0974749db (diff) |
Many source files included bit_ops.h when what was really desired was
rotate.h, or when it was not needed at all. Remove or change the includes
as needed.
Diffstat (limited to 'src/block/twofish')
-rw-r--r-- | src/block/twofish/twofish.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/block/twofish/twofish.cpp b/src/block/twofish/twofish.cpp index edc476d15..9784b00a2 100644 --- a/src/block/twofish/twofish.cpp +++ b/src/block/twofish/twofish.cpp @@ -7,7 +7,7 @@ #include <botan/twofish.h> #include <botan/loadstor.h> -#include <botan/bit_ops.h> +#include <botan/rotate.h> namespace Botan { |