refactor: Pass by value

This commit is contained in:
Michael Carlberg 2016-06-21 03:59:43 +02:00
parent b26ab9ce5f
commit e1f8c001dd
72 changed files with 253 additions and 253 deletions
include/modules

View file

@ -24,9 +24,9 @@ namespace modules
std::atomic<int> percentage_free;
public:
explicit MemoryModule(const std::string& name);
explicit MemoryModule(std::string name);
bool update();
bool build(Builder *builder, const std::string& tag);
bool build(Builder *builder, std::string tag);
};
}