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;