Added conditional compilation directive for existence 8 bit types

This commit is contained in:
John Wellbelove 2022-05-17 10:42:31 +01:00
parent 882bbab022
commit da58dfe018

View File

@ -36,6 +36,8 @@ SOFTWARE.
#include "platform.h"
#if ETL_USING_8BIT_TYPES
// The default hash calculation.
#include "fnv_1.h"
#include "type_traits.h"
@ -436,4 +438,6 @@ namespace etl
};
}
#endif ETL_USING_8BIT_TYPES
#endif