Skip to content
Snippets Groups Projects
Commit 93c332ca authored by Michael Hart's avatar Michael Hart
Browse files

Refs #18007 ulong missing on Windows and OSX

parent f1e97afa
No related branches found
No related tags found
No related merge requests found
......@@ -284,7 +284,7 @@ void InstrumentInfo::fillLiveData(const Poco::XML::Element *elem) {
elem->getElementsByTagName("connection");
// Load connection info for each child element
for (ulong i = 0; i < connections->length(); ++i) {
for (unsigned long i = 0; i < connections->length(); ++i) {
auto *conn = dynamic_cast<Poco::XML::Element *>(connections->item(i));
try {
m_listeners.emplace_back(LiveListenerInfo(this, conn));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment