diff options
| author | practicalswift <[email protected]> | 2018-05-02 17:14:48 +0200 |
|---|---|---|
| committer | practicalswift <[email protected]> | 2018-05-03 21:47:40 +0200 |
| commit | c3f34d06befa352acb343ad08337123d9474535f (patch) | |
| tree | e9b5cae135395d090800a486791f4ad9dd1bd0ff /src/test/versionbits_tests.cpp | |
| parent | Merge #12639: Reduce cs_main lock in listunspent (diff) | |
| download | discoin-c3f34d06befa352acb343ad08337123d9474535f.tar.xz discoin-c3f34d06befa352acb343ad08337123d9474535f.zip | |
Make it clear which functions that are intended to be translation unit local
Do not share functions that are meant to be translation unit local with
other translation units. Use internal linkage for those consistently.
Diffstat (limited to 'src/test/versionbits_tests.cpp')
| -rw-r--r-- | src/test/versionbits_tests.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/versionbits_tests.cpp b/src/test/versionbits_tests.cpp index 92ef58e51..744282530 100644 --- a/src/test/versionbits_tests.cpp +++ b/src/test/versionbits_tests.cpp @@ -12,7 +12,7 @@ #include <boost/test/unit_test.hpp> /* Define a virtual block time, one block per 10 minutes after Nov 14 2014, 0:55:36am */ -int32_t TestTime(int nHeight) { return 1415926536 + 600 * nHeight; } +static int32_t TestTime(int nHeight) { return 1415926536 + 600 * nHeight; } static const Consensus::Params paramsDummy = Consensus::Params(); |