summaryrefslogtreecommitdiff
path: root/include/internal/routines/level1/xswap.h
diff options
context:
space:
mode:
authorCedric Nugteren <web@cedricnugteren.nl>2016-06-17 14:30:37 +0200
committerCedric Nugteren <web@cedricnugteren.nl>2016-06-17 14:30:37 +0200
commitf9947b4d7ffedcf98cdb128de835422f647e7f15 (patch)
treec42d427a23de5d14b3407943d529d18cd9e516f0 /include/internal/routines/level1/xswap.h
parent536b7fe4bce4b183cb060a1b9045752ae39d842f (diff)
Removed the precision argument from the routines in favor of a single templated function
Diffstat (limited to 'include/internal/routines/level1/xswap.h')
-rw-r--r--include/internal/routines/level1/xswap.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/include/internal/routines/level1/xswap.h b/include/internal/routines/level1/xswap.h
index 45e34dd6..6a568377 100644
--- a/include/internal/routines/level1/xswap.h
+++ b/include/internal/routines/level1/xswap.h
@@ -40,10 +40,6 @@ class Xswap: public Routine<T> {
StatusCode DoSwap(const size_t n,
const Buffer<T> &x_buffer, const size_t x_offset, const size_t x_inc,
const Buffer<T> &y_buffer, const size_t y_offset, const size_t y_inc);
-
- private:
- // Static variable to get the precision
- const static Precision precision_;
};
// =================================================================================================