Make PluginInterface::GetBashTags() return a std::vector

Instead of a std::set. The tags are only iterated over, and uniqueness
and ordering are more of a concern for the UI.

Part of #68.
This commit is contained in:
Oliver Hamlet
2020-07-11 19:13:13 +01:00
parent e85ec7b1ce
commit 4e48d085cc
7 changed files with 12 additions and 12 deletions
+1 -1
View File
@@ -75,7 +75,7 @@ public:
* @return A set of Bash Tags. The order of elements in the set holds no
* semantics.
*/
virtual std::set<Tag> GetBashTags() const = 0;
virtual std::vector<Tag> GetBashTags() const = 0;
/**
* Get the plugin's CRC-32 checksum.