Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1From 5d6984729190139ddcbefb825e4d59a8bdfc3551 Mon Sep 17 00:00:00 2001 2From: Luke Granger-Brown <git@lukegb.com> 3Date: Sun, 22 Jun 2025 14:05:49 +0100 4Subject: [PATCH 2/3] Properly mark CNTV2DeviceScanner::GetDeviceInfoList as a 5 class member method 6 7--- 8 ajantv2/src/ntv2devicescanner.cpp | 2 +- 9 1 file changed, 1 insertion(+), 1 deletion(-) 10 11diff --git a/ajantv2/src/ntv2devicescanner.cpp b/ajantv2/src/ntv2devicescanner.cpp 12index 11d145be..1fb0b433 100644 13--- a/ajantv2/src/ntv2devicescanner.cpp 14+++ b/ajantv2/src/ntv2devicescanner.cpp 15@@ -117,7 +117,7 @@ CNTV2DeviceScanner::CNTV2DeviceScanner (const bool inScanNow) 16 } 17 #endif // !defined(NTV2_DEPRECATE_16_3) 18 19-NTV2DeviceInfoList GetDeviceInfoList (void) 20+NTV2DeviceInfoList CNTV2DeviceScanner::GetDeviceInfoList (void) 21 { 22 AJAAutoLock tmpLock(&sDevInfoListLock); 23 return sDevInfoList; 24-- 252.49.0 26