Rename readDeviceFile=>readDeviceSpecFile
This commit is contained in:
@@ -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 += "||";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user