From 50b0ff225fe0cd7b012cbfc41bfc512e43045910 Mon Sep 17 00:00:00 2001 From: sln Date: Mon, 19 Dec 2011 06:05:17 +0000 Subject: [PATCH] Windows compilation after Linux integration --- src/LightApp/LightApp_Driver.cxx | 6 ++++-- src/SUIT/SUIT_Session.cxx | 6 ++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/src/LightApp/LightApp_Driver.cxx b/src/LightApp/LightApp_Driver.cxx index 82f6f501c..3508c2021 100644 --- a/src/LightApp/LightApp_Driver.cxx +++ b/src/LightApp/LightApp_Driver.cxx @@ -52,8 +52,10 @@ LightApp_Driver::LightApp_Driver() myFileNameSizes( 0 ), myCurrOFile( 0 ), myNbFilles( 0 ), - myBloc( 0 ), - myBlocFcntl( 0 ) +#ifndef WIN32 + myBlocFcntl( 0 ), +#endif + myBloc( 0 ) { } diff --git a/src/SUIT/SUIT_Session.cxx b/src/SUIT/SUIT_Session.cxx index e3bf5f503..5a822a310 100755 --- a/src/SUIT/SUIT_Session.cxx +++ b/src/SUIT/SUIT_Session.cxx @@ -53,8 +53,10 @@ SUIT_Session::SUIT_Session() myExitStatus( NORMAL ), myExitFlags ( 0 ), myBTimer( 0 ), - myBFile( 0 ), - myBFileFcntl( 0 ) +#ifndef WIN32 + myBFileFcntl( 0 ), +#endif + myBFile( 0 ) { SUIT_ASSERT( !mySession ) -- 2.39.2