From 566d114ab44e5f7c87b6b5e4b5e2c1c26a37831b Mon Sep 17 00:00:00 2001 From: Alex Fabijanic Date: Tue, 4 Apr 2017 23:55:59 -0500 Subject: [PATCH] fix -Wreorder --- Foundation/src/SHA2Engine.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Foundation/src/SHA2Engine.cpp b/Foundation/src/SHA2Engine.cpp index 1186430a1..3810372bb 100644 --- a/Foundation/src/SHA2Engine.cpp +++ b/Foundation/src/SHA2Engine.cpp @@ -229,8 +229,8 @@ do { \ #endif SHA2Engine::SHA2Engine(ALGORITHM algorithm) - : _algorithm(algorithm) - , _context(NULL) + : _context(NULL), + _algorithm(algorithm) { _digest.reserve(digestLength()); reset();