diff options
author | lloyd <[email protected]> | 2014-11-05 12:00:24 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2014-11-05 12:00:24 +0000 |
commit | 4f474481f46bffc095ae104485b8da95bcb03973 (patch) | |
tree | 2da1bf58bdce2a2e9a1a8a6f8d27dbdb3a87e174 /src/cmd | |
parent | f78e5e3fbd87d2e903f5ff4a230b65ac6d44f281 (diff) |
Replace Transformatio::nstart with start_raw so we can do a full set
of overloads in the base class with the same name.
Diffstat (limited to 'src/cmd')
-rw-r--r-- | src/cmd/speed/speed.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd/speed/speed.cpp b/src/cmd/speed/speed.cpp index 381cc9d83..e7e3e5ff7 100644 --- a/src/cmd/speed/speed.cpp +++ b/src/cmd/speed/speed.cpp @@ -134,7 +134,7 @@ void time_transform(std::unique_ptr<Transformation> tf, std::chrono::nanoseconds time_used(0); - tf->start_vec(rng.random_vec(tf->default_nonce_length())); + tf->start(rng.random_vec(tf->default_nonce_length())); auto start = std::chrono::high_resolution_clock::now(); |