diff options
author | Nick Mathewson <nickm@torproject.org> | 2016-05-19 21:18:43 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2016-05-19 21:21:24 -0400 |
commit | f2205071f02111c22b9fd26374cdce40d0c2389b (patch) | |
tree | 50106d560b6559f06082bebb94c02a5ecd9807a2 /src/common/util.h | |
parent | 2775dd8649df80acf0f4f13f434363f28f64a4b8 (diff) | |
download | tor-f2205071f02111c22b9fd26374cdce40d0c2389b.tar.gz tor-f2205071f02111c22b9fd26374cdce40d0c2389b.zip |
Remove round_int64_to_next_multiple_of: It is now unused.
Diffstat (limited to 'src/common/util.h')
-rw-r--r-- | src/common/util.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/common/util.h b/src/common/util.h index 814c8622a2..4c5070e65b 100644 --- a/src/common/util.h +++ b/src/common/util.h @@ -145,7 +145,6 @@ uint64_t round_to_power_of_2(uint64_t u64); unsigned round_to_next_multiple_of(unsigned number, unsigned divisor); uint32_t round_uint32_to_next_multiple_of(uint32_t number, uint32_t divisor); uint64_t round_uint64_to_next_multiple_of(uint64_t number, uint64_t divisor); -int64_t round_int64_to_next_multiple_of(int64_t number, int64_t divisor); int64_t sample_laplace_distribution(double mu, double b, double p); int64_t add_laplace_noise(int64_t signal, double random, double delta_f, double epsilon); |