Rename readDeviceFile=>readDeviceSpecFile

This commit is contained in:
2025-08-29 13:29:18 -04:00
parent b9ca38bff1
commit 8f41e164a2
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -13,7 +13,7 @@
namespace smo {
namespace device {
std::string DeviceManager::readDeviceFile(const std::string& filename)
std::string DeviceManager::readDeviceSpecFile(const std::string& filename)
{
std::ifstream file(filename);
if (!file.is_open())
@@ -37,7 +37,7 @@ void DeviceManager::collateAllDeviceSpecs(void)
for (const auto& file : options.deviceSpecFiles)
{
std::string fileContent = readDeviceFile(file);
std::string fileContent = readDeviceSpecFile(file);
if (!allDeviceSpecs.empty()) {
allDeviceSpecs += "||";
}