From a37bdfc9552374edb022cefa824b8dac56f9b6d6 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Wed, 6 Nov 2013 11:13:31 +0100 Subject: [PATCH] Fix static/inline order --- Eigen/src/Core/AssignEvaluator.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Eigen/src/Core/AssignEvaluator.h b/Eigen/src/Core/AssignEvaluator.h index 8d835b2f6..5f2fb9d38 100644 --- a/Eigen/src/Core/AssignEvaluator.h +++ b/Eigen/src/Core/AssignEvaluator.h @@ -438,7 +438,7 @@ struct copy_using_evaluator_impl struct copy_using_evaluator_impl { - inline static void run(DstXprType &dst, const SrcXprType &src) + static inline void run(DstXprType &dst, const SrcXprType &src) { typedef typename evaluator::type DstEvaluatorType; typedef typename evaluator::type SrcEvaluatorType; @@ -501,7 +501,7 @@ struct copy_using_evaluator_impl struct copy_using_evaluator_impl { - inline static void run(DstXprType &dst, const SrcXprType &src) + static inline void run(DstXprType &dst, const SrcXprType &src) { typedef typename evaluator::type DstEvaluatorType; typedef typename evaluator::type SrcEvaluatorType; @@ -540,7 +540,7 @@ struct copy_using_evaluator_impl struct copy_using_evaluator_impl { - inline static void run(DstXprType &dst, const SrcXprType &src) + static inline void run(DstXprType &dst, const SrcXprType &src) { typedef typename evaluator::type DstEvaluatorType; typedef typename evaluator::type SrcEvaluatorType; @@ -592,7 +592,7 @@ struct copy_using_evaluator_impl struct copy_using_evaluator_impl { - inline static void run(DstXprType &dst, const SrcXprType &src) + static inline void run(DstXprType &dst, const SrcXprType &src) { typedef typename evaluator::type DstEvaluatorType; typedef typename evaluator::type SrcEvaluatorType;