cellml / libcellml

Repository for libCellML development.
https://libcellml.org
Apache License 2.0
16 stars 21 forks source link

C++: create aliases for std::vector<T> types #1227

Open agarny opened 5 months ago

agarny commented 5 months ago

For instance, std::vector<AnalyserVariablePtr> would be replaced with AnalyserVariablePtrs through using AnalyserVariablePtrs = std::vector<AnalyserVariablePtr>;. This would reduce the unnecessary noise level in our code base.