aboutsummaryrefslogtreecommitdiff
path: root/include/modules/hash.h
diff options
context:
space:
mode:
authorGravatar Sadie Powell2022-12-01 05:14:58 +0000
committerGravatar Sadie Powell2022-12-01 05:25:01 +0000
commit45e56e5ee1bdb9e169be957e21a4f7b536e417ff (patch)
tree72642028744c278ca476e656933716ac9f7357b8 /include/modules/hash.h
parentMerge branch 'insp3' into master. (diff)
Yet more stylistic fixes.
Diffstat (limited to 'include/modules/hash.h')
-rw-r--r--include/modules/hash.h4
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)
{
}