Skip to content

Commit f9e6420

Browse files
committed
Added fallback data store format
Signed-off-by: Jared Duffey <jared.duffey@bluequartz.net>
1 parent b0fb842 commit f9e6420

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/simplnx/DataStructure/IO/Generic/DataIOCollection.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,8 @@ std::unique_ptr<IDataStore> DataIOCollection::createDataStore(const std::string&
5656
}
5757
}
5858

59-
return nullptr;
59+
nx::core::Generic::CoreDataIOManager coreManager;
60+
return coreManager.dataStoreCreationFnc(coreManager.formatName())(dataType, tupleShape, componentShape, {});
6061
}
6162

6263
void DataIOCollection::checkStoreDataFormat(uint64 dataSize, std::string& dataFormat) const

0 commit comments

Comments
 (0)