diff options
| author | 2022-12-01 05:14:58 +0000 | |
|---|---|---|
| committer | 2022-12-01 05:25:01 +0000 | |
| commit | 45e56e5ee1bdb9e169be957e21a4f7b536e417ff (patch) | |
| tree | 72642028744c278ca476e656933716ac9f7357b8 /include/modules/hash.h | |
| parent | Merge branch 'insp3' into master. (diff) | |
Yet more stylistic fixes.
Diffstat (limited to 'include/modules/hash.h')
| -rw-r--r-- | include/modules/hash.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/modules/hash.h b/include/modules/hash.h index 9c5370366..5b8dfe625 100644 --- a/include/modules/hash.h +++ b/include/modules/hash.h @@ -31,7 +31,9 @@ public: const unsigned int out_size; const unsigned int block_size; HashProvider(Module* mod, const std::string& Name, unsigned int osiz = 0, unsigned int bsiz = 0) - : DataProvider(mod, "hash/" + Name), out_size(osiz), block_size(bsiz) + : DataProvider(mod, "hash/" + Name) + , out_size(osiz) + , block_size(bsiz) { } |
