Issue #39. Gave function the wrong name.

This commit is contained in:
WrinklyNinja
2013-08-06 13:32:28 +01:00
parent ce652994f5
commit bd2afd810d
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -751,7 +751,7 @@ namespace boss {
}
}
void GetPluginInVertices(const Plugin& plugin, const boost::unordered_map< std::string, std::vector<std::string> >& overlapMap, std::set<std::string>& inVertices) {
void GetPluginInEdges(const Plugin& plugin, const boost::unordered_map< std::string, std::vector<std::string> >& overlapMap, std::set<std::string>& inVertices) {
//In-vertices are named in the plugin's entry in the overlap map, and in the plugin's requirements, masters and loadAfter members.
vector<string> strVec = plugin.Masters();
+1 -1
View File
@@ -218,7 +218,7 @@ namespace boss {
//The map maps each plugin name to a vector of names of plugins that overlap with it and should load before it.
void CalcPluginOverlaps(const std::list<Plugin>& plugins, boost::unordered_map< std::string, std::vector<std::string> >& overlapMap);
void GetPluginInVertices(const Plugin& plugin, const boost::unordered_map< std::string, std::vector<std::string> >& overlapMap, std::set<std::string>& inVertices);
void GetPluginInEdges(const Plugin& plugin, const boost::unordered_map< std::string, std::vector<std::string> >& overlapMap, std::set<std::string>& inVertices);
}
#endif