]> git.tdb.fi Git - builder.git/blobdiff - source/logger.h
Replace some sets with vectors as well
[builder.git] / source / logger.h
index c22339f55928270dacadccc02fb2c27302b85b42..64c131544c4cef1995ec8c8b3786b7355f90ee36 100644 (file)
@@ -1,13 +1,13 @@
 #ifndef LOGGER_H_
 #define LOGGER_H_
 
-#include <set>
 #include <string>
+#include <vector>
 
 class Logger
 {
 private:
-       std::set<std::string> enabled_channels;
+       std::vector<std::string> enabled_channels;
 
 public:
        void enable_channel(const std::string &);