Commit afb8370d authored by Tomáš Oberhuber's avatar Tomáš Oberhuber
Browse files

Fixing tools.

parent 6f753272
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -8,10 +8,10 @@

/* See Copyright Notice in tnl/Copyright */

#include <TNL/Arrays/ArrayOperations.h>
#include <TNL/Containers/ArrayOperations.h>

namespace TNL {
namespace Arrays {
namespace Containers {

#ifdef TEMPLATE_EXPLICIT_INSTANTIATION

@@ -290,5 +290,5 @@ template bool ArrayOperations< Devices::Cuda >::setMemory< long double, long int

#endif

} // namespace Arrays
} // namespace Containers
} // namespace TNL
+3 −3
Original line number Diff line number Diff line
@@ -8,10 +8,10 @@

/* See Copyright Notice in tnl/Copyright */

#include <TNL/Arrays/ArrayOperations.h>
#include <TNL/Containers/ArrayOperations.h>

namespace TNL {
namespace Arrays {
namespace Containers {

#ifdef TEMPLATE_EXPLICIT_INSTANTIATION

@@ -194,5 +194,5 @@ template bool ArrayOperations< Devices::Host >::setMemory< long double, long int

#endif

} // namespace Arrays
} // namespace Containers
} // namespace TNL
+3 −3
Original line number Diff line number Diff line
@@ -8,10 +8,10 @@

/* See Copyright Notice in tnl/Copyright */

#include <TNL/Arrays/Array.h>
#include <TNL/Containers/Array.h>

namespace TNL {
namespace Arrays {
namespace Containers {

#ifdef TEMPLATE_EXPLICIT_INSTANTIATION

@@ -39,5 +39,5 @@ template class Array< long double, Devices::Cuda, long int >;

#endif

} // namespace Arrays
} // namespace Containers
} // namespace TNL
+3 −3
Original line number Diff line number Diff line
@@ -8,10 +8,10 @@

/* See Copyright Notice in tnl/Copyright */

#include <TNL/Arrays/MultiArray.h>
#include <TNL/Containers/MultiArray.h>

namespace TNL {
namespace Arrays {
namespace Containers {

#ifdef TEMPLATE_EXPLICIT_INSTANTIATION

@@ -64,5 +64,5 @@ template class MultiArray< 4, double, Devices::Cuda, long int >;

#endif

} // namespace Arrays
} // namespace Containers
} // namespace TNL
+3 −3
Original line number Diff line number Diff line
@@ -8,10 +8,10 @@

/* See Copyright Notice in tnl/Copyright */

#include <TNL/Arrays/SharedArray.h>
#include <TNL/Containers/SharedArray.h>

namespace TNL {
namespace Arrays {
namespace Containers {

#ifdef TEMPLATE_EXPLICIT_INSTANTIATION

@@ -37,5 +37,5 @@ extern template class SharedArray< long double, Devices::Cuda, long int >;

#endif

} // namespace Arrays
} // namespace Containers
} // namespace TNL
Loading