Skip to content

Commit f23c302

Browse files
committed
fix StatArrayDim3
see e.g. Modelica.Electrical.Digital.Examples.BUF3S git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@25724 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
1 parent f628fa0 commit f23c302

File tree

1 file changed

+1
-1
lines changed
  • SimulationRuntime/cpp/Include/Core/Math

1 file changed

+1
-1
lines changed

SimulationRuntime/cpp/Include/Core/Math/Array.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1309,7 +1309,7 @@ class StatArrayDim2<string,size1,size2> : public BaseArray<string>
13091309
* @param size3 size of dimension two
13101310
*/
13111311
template<typename T, std::size_t size1, std::size_t size2, std::size_t size3>
1312-
class StatArrayDim3 : public BaseArray<T>
1312+
class StatArrayDim3 : public StatArray<T, size1*size2*size3>
13131313
{
13141314
public:
13151315
/**

0 commit comments

Comments
 (0)