diff --git a/bigtiff/parse.cpp b/bigtiff/parse.cpp index fb62b829..31fa53b3 100644 --- a/bigtiff/parse.cpp +++ b/bigtiff/parse.cpp @@ -1,5 +1,4 @@ -#include #include #include #include @@ -141,8 +140,6 @@ struct TypeForSize<64> template typename TypeForSize::Type byte_swap(const typename TypeForSize::Type& v) { - assert(size == 16 || size == 32 || size == 64); // supported sizes - typename TypeForSize::Type result = 0; if (size == 16) result = __builtin_bswap16(v);