From 68d9fb9c8c06b29eba38efd4f475fd0355b56b92 Mon Sep 17 00:00:00 2001 From: Ross Miller <rgmiller@ornl.gov> Date: Mon, 11 May 2015 10:39:12 -0400 Subject: [PATCH] Fix another Win7 build warning Refs #11315 --- .../Framework/LiveData/src/TOPAZLiveEventDataListener.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Code/Mantid/Framework/LiveData/src/TOPAZLiveEventDataListener.cpp b/Code/Mantid/Framework/LiveData/src/TOPAZLiveEventDataListener.cpp index 1149ed41eac..cbff735f5fb 100644 --- a/Code/Mantid/Framework/LiveData/src/TOPAZLiveEventDataListener.cpp +++ b/Code/Mantid/Framework/LiveData/src/TOPAZLiveEventDataListener.cpp @@ -427,7 +427,7 @@ void TOPAZLiveEventDataListener::run() { g_log.error() << "No events will be processed!" << std::endl; } - for (unsigned long j = firstEvent; j <= lastEvent; j++) + for (uint64_t j = firstEvent; j <= lastEvent; j++) { // appendEvent needs tof to be in units of microseconds, but // it comes from the ADARA stream in units of 100ns. -- GitLab