[apps/shared] Change name StorageExpressionModel -->

ExpressionModelHandle
This commit is contained in:
Émilie Feral
2019-02-21 12:50:29 +01:00
parent cef106b23d
commit 4be902be93
11 changed files with 45 additions and 45 deletions

View File

@@ -20,7 +20,7 @@ void StorageCartesianFunctionStore::setMemoizedModelAtIndex(int cacheIndex, Ion:
m_functions[cacheIndex] = StorageCartesianFunction(record);
}
StorageExpressionModel * StorageCartesianFunctionStore::memoizedModelAtIndex(int cacheIndex) const {
ExpressionModelHandle * StorageCartesianFunctionStore::memoizedModelAtIndex(int cacheIndex) const {
assert(cacheIndex >= 0 && cacheIndex < k_maxNumberOfMemoizedModels);
return &m_functions[cacheIndex];
}