Changed every int to int32_t

This commit is contained in:
saundersp
2023-12-16 08:47:35 +01:00
parent a19787f273
commit 674c5da3cc
3 changed files with 26 additions and 19 deletions

View File

@ -60,7 +60,7 @@ static asp::Array<T> create_random_array(const size_t& n) noexcept {
return std::move(asp::map(original, [& distrib, & gen](const size_t&, const T&) -> const T { return distrib(gen); }));
}
int main(int argc, char** argv) {
int32_t main(int32_t argc, char** argv) {
asp::toolbox_unit_test();
using array_type = uint16_t;