Skip to content

Commit

Permalink
[Janitor mode] Fix whitespace
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@21850 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
OpenModelica-Hudson committed Aug 12, 2014
1 parent f9d96f6 commit d562959
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions SimulationRuntime/cpp/Include/Core/Math/Array.h
Expand Up @@ -86,7 +86,7 @@ template<typename T, std::size_t size>class StatArrayDim1 : public BaseArray<T>
}
return *this;
}

void assign(const T* data)
{
std::copy(data,data+size,_real_array.begin());
Expand Down Expand Up @@ -160,7 +160,7 @@ template<typename T ,std::size_t size1,std::size_t size2>class StatArrayDim2 : p
}
StatArrayDim2<T,size1,size2>& operator=(const StatArrayDim2<T,size1,size2>& rhs)
{
if (this != &rhs)
if (this != &rhs)
{
_real_array = rhs._real_array;
}
Expand Down Expand Up @@ -289,7 +289,7 @@ template<typename T ,std::size_t size1, std::size_t size2, std::size_t size3> cl
}
StatArrayDim3<T,size1,size2,size3>& operator=(const StatArrayDim3<T,size1,size2,size3>& rhs)
{
if (this != &rhs)
if (this != &rhs)
{
_real_array = rhs._real_array;
}
Expand Down Expand Up @@ -648,7 +648,7 @@ template<typename T>class DynArrayDim1 : public BaseArray<T>
}
DynArrayDim1<T>& operator=(const DynArrayDim1<T>& rhs)
{
if (this != &rhs)
if (this != &rhs)
{
std::vector<size_t> v = rhs.getDims();
_multi_array.resize(v);
Expand Down Expand Up @@ -912,7 +912,7 @@ template<typename T> class DynArrayDim3 : public BaseArray<T>



/*cd
/*cd
template<typename T> class DynArrayDim4 : public BaseArray<T>
{
Expand Down

0 comments on commit d562959

Please sign in to comment.