Skip to content

Commit

Permalink
some errors fixed
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@21847 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
RuedKamp committed Aug 12, 2014
1 parent 5595109 commit 15bae9b
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions SimulationRuntime/cpp/Include/Core/Math/Array.h
Expand Up @@ -69,10 +69,6 @@ template<typename T, std::size_t size>class StatArrayDim1 : public BaseArray<T>

StatArrayDim1()
{
for(int i = 0; i < size; i++)
{
_real_array[i] = 0.0;
}
//_real_array.assign(0.0);
}

Expand Down Expand Up @@ -152,7 +148,6 @@ template<typename T ,std::size_t size1,std::size_t size2>class StatArrayDim2 : p
StatArrayDim2(const T* data) //const T (&data) const T (&data)[size1*size2]
{
std::copy(data,data+size1*size2,_real_array.begin());

}

StatArrayDim2()
Expand Down

0 comments on commit 15bae9b

Please sign in to comment.