cpp : disambiguated auto keyword

This commit is contained in:
saundersp
2023-07-15 03:35:31 +02:00
parent 4cd659ea8c
commit 18afd40782
5 changed files with 11 additions and 11 deletions

View File

@ -65,7 +65,7 @@ namespace np {
// #if __DEBUG
// print("Shape created (initializer)");
// #endif
const auto* begin = dims.begin();
const size_t* begin = dims.begin();
for(size_t i = 0; i < length; ++i){
data[i] = begin[i];
#if __DEBUG