Skip to content

Commit

Permalink
Minor fix. (#155)
Browse files Browse the repository at this point in the history
  • Loading branch information
eaplatanios authored and endrift committed Apr 17, 2019
1 parent 7de79d8 commit 29dc84f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/coreinfo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ bool loadCoreInfo(const string& jsonData) {
for (auto ext = core->at("ext").cbegin(); ext != core->at("ext").cend(); ++ext) {
s_extensionToCore[*ext] = core.key();
}
s_coreToLib[core.key()] = core->at("lib");
s_coreToLib[core.key()] = core->at("lib").get<string>();
}
return true;
}
Expand Down

0 comments on commit 29dc84f

Please sign in to comment.