practicalswift
|
c3f34d06be
|
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.
|
2018-05-03 21:47:40 +02:00 |
|
Dimitris Apostolou
|
4d9b4256d8
|
Fix typos
|
2018-03-21 08:34:44 +02:00 |
|
Akira Takizawa
|
595a7bab23
|
Increment MIT Licence copyright header year on files modified in 2017
|
2018-01-03 02:26:56 +09:00 |
|
MeshCollider
|
1a445343f6
|
scripted-diff: Replace #include "" with #include <> (ryanofsky)
-BEGIN VERIFY SCRIPT-
for f in \
src/*.cpp \
src/*.h \
src/bench/*.cpp \
src/bench/*.h \
src/compat/*.cpp \
src/compat/*.h \
src/consensus/*.cpp \
src/consensus/*.h \
src/crypto/*.cpp \
src/crypto/*.h \
src/crypto/ctaes/*.h \
src/policy/*.cpp \
src/policy/*.h \
src/primitives/*.cpp \
src/primitives/*.h \
src/qt/*.cpp \
src/qt/*.h \
src/qt/test/*.cpp \
src/qt/test/*.h \
src/rpc/*.cpp \
src/rpc/*.h \
src/script/*.cpp \
src/script/*.h \
src/support/*.cpp \
src/support/*.h \
src/support/allocators/*.h \
src/test/*.cpp \
src/test/*.h \
src/wallet/*.cpp \
src/wallet/*.h \
src/wallet/test/*.cpp \
src/wallet/test/*.h \
src/zmq/*.cpp \
src/zmq/*.h
do
base=${f%/*}/ relbase=${base#src/} sed -i "s:#include \"\(.*\)\"\(.*\):if test -e \$base'\\1'; then echo \"#include <\"\$relbase\"\\1>\\2\"; else echo \"#include <\\1>\\2\"; fi:e" $f
done
-END VERIFY SCRIPT-
|
2017-11-16 08:23:01 +13:00 |
|
practicalswift
|
49de096c2a
|
Remove unused Boost includes
|
2017-06-09 10:25:26 +02:00 |
|
Pieter Wuille
|
90620d66c9
|
scripted-diff: Rename cuckoo tests' local rand context
-BEGIN VERIFY SCRIPT-
sed -i 's/insecure_rand/local_rand_ctx/g' src/test/cuckoocache_tests.cpp
-END VERIFY SCRIPT-
|
2017-06-05 12:44:44 -07:00 |
|
Jeremy Rubin
|
f9c88079df
|
Deduplicate SignatureCacheHasher
This moves the SignatureCacheHasher to the sigcache header, out of the anonymous
namespace, so that the tests can import it.
|
2017-04-12 14:42:41 -07:00 |
|
Jeremy Rubin
|
3f098cccf6
|
Decrease testcase sizes in cuckoocache tests
|
2017-03-30 15:30:45 -04:00 |
|
practicalswift
|
dbf30ff10f
|
[trivial] Fix typos in comments
|
2017-03-21 19:49:08 +01:00 |
|
Lauda
|
5c66d41b7f
|
[Trivial] Grammar and typo correction
Minor corrections in src\test\* .
|
2017-01-22 13:18:51 +01:00 |
|
Jeremy Rubin
|
67dac4e193
|
Add unit tests for the CuckooCache
SQUASHME: Update Tests for other SQUASHMEs
|
2016-12-14 16:02:22 -05:00 |
|