summaryrefslogtreecommitdiff
path: root/src/routines/level1/xmin.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/routines/level1/xmin.hpp')
-rw-r--r--src/routines/level1/xmin.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/routines/level1/xmin.hpp b/src/routines/level1/xmin.hpp
index 6befec64..47a195ea 100644
--- a/src/routines/level1/xmin.hpp
+++ b/src/routines/level1/xmin.hpp
@@ -35,10 +35,10 @@ class Xmin: public Xamax<T> {
// Forwards to the regular max-absolute version. The implementation difference is realised in the
// kernel through a pre-processor macro based on the name of the routine.
- StatusCode DoMin(const size_t n,
- const Buffer<unsigned int> &imin_buffer, const size_t imin_offset,
- const Buffer<T> &x_buffer, const size_t x_offset, const size_t x_inc) {
- return DoAmax(n, imin_buffer, imin_offset, x_buffer, x_offset, x_inc);
+ void DoMin(const size_t n,
+ const Buffer<unsigned int> &imin_buffer, const size_t imin_offset,
+ const Buffer<T> &x_buffer, const size_t x_offset, const size_t x_inc) {
+ DoAmax(n, imin_buffer, imin_offset, x_buffer, x_offset, x_inc);
}
};