node-sword-interface 1.0.86 → 1.0.87

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-sword-interface",
3
- "version": "1.0.86",
3
+ "version": "1.0.87",
4
4
  "description": "Javascript (N-API) interface to SWORD library",
5
5
  "keywords": [
6
6
  "C++",
@@ -327,7 +327,7 @@ vector<SWModule*> RepositoryInterface::getUpdatedRepoModules(string repoName, bo
327
327
  for (auto const& moduleStatus : moduleStatusMap) {
328
328
  const unsigned int updateStatus = moduleStatus.second;
329
329
 
330
- if (updateStatus == InstallMgr::MODSTAT_UPDATED) {
330
+ if (updateStatus == static_cast<unsigned int>(InstallMgr::MODSTAT_UPDATED)) {
331
331
  updatedModules.push_back(moduleStatus.first);
332
332
  }
333
333
  }