Skip to content

Commit

Permalink
TriggerScope: write initializers in correct order
Browse files Browse the repository at this point in the history
Eliminate warnings.
  • Loading branch information
marktsuchida committed Oct 21, 2022
1 parent 1cccda7 commit 582cab1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions DeviceAdapters/TriggerScope/TriggerScope.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -363,15 +363,15 @@ MODULE_API void DeleteDevice(MM::Device* pDevice)

CTriggerScopeHub::CTriggerScopeHub(void) :
busy_(false),
error_(0),
timeOutTimer_(0),
progfileCSV_("TriggerScope.csv"),
error_(0),
fidSerialLog_(NULL),
firmwareVer_(0.0),
cmdInProgress_(0),
initialized_(0),
nUseSerialLog_(1),
progfileCSV_("TriggerScope.csv"),
clearStr_(g_Keyword_Clear_Off)
clearStr_(g_Keyword_Clear_Off),
nUseSerialLog_(1)
{
// call the base class method to set-up default error codes/messages
InitializeDefaultErrorMessages();
Expand Down

0 comments on commit 582cab1

Please sign in to comment.