From 43659333d3847adaae7034dd36a989ded6c400e6 Mon Sep 17 00:00:00 2001 From: Vikram Rajkumar Date: Tue, 3 Feb 2015 18:12:37 -0500 Subject: [PATCH] Fix compiler warning --- src/filesystem.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/filesystem.cpp b/src/filesystem.cpp index 85dd1f5..a590065 100644 --- a/src/filesystem.cpp +++ b/src/filesystem.cpp @@ -520,13 +520,13 @@ namespace fc { }; simple_lock_file::impl::impl(const path& lock_file_path) : - is_locked(false), - lock_file_path(lock_file_path), #ifdef _WIN32 - file_handle(INVALID_HANDLE_VALUE) + file_handle(INVALID_HANDLE_VALUE), #else - file_handle(-1) + file_handle(-1), #endif + is_locked(false), + lock_file_path(lock_file_path) {} simple_lock_file::impl::~impl()