Enable -Wshadow and silence warnings

This commit is contained in:
ReinUsesLisp
2019-11-27 05:46:03 -03:00
parent 22cc6f6c1b
commit e1a6729df7
7 changed files with 10 additions and 9 deletions

View File

@@ -8,7 +8,7 @@
namespace Sirit {
Stream::Stream(std::vector<u32>& words) : words(words) {}
Stream::Stream(std::vector<u32>& words_) : words{words_} {}
Stream::~Stream() = default;