Cory Fields
|
af3503d903
|
net: move BanMan to its own files
|
2019-01-16 13:54:18 -05:00 |
|
Cory Fields
|
4c0d961eb0
|
banman: create and split out banman
Some say he has always been.
|
2019-01-16 13:54:18 -05:00 |
|
DrahtBot
|
eb7daf4d60
|
Update copyright headers to 2018
|
2018-07-27 07:15:02 -04:00 |
|
Luke Dashjr
|
a5bca13095
|
Bugfix: Include <memory> for std::unique_ptr
|
2018-04-02 18:31:52 +00: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
|
b82c55af78
|
Add attribute [[noreturn]] (C++11) to functions that will not return
Rationale:
* Reduce the number of false positives from static analyzers
* Potentially enable additional compiler optimizations
|
2017-07-17 18:46:18 +02:00 |
|
Russell Yanofsky
|
91e303595b
|
Make test_bitcoin.cpp compatible with Qt Test framework
Move Boost.Test main function and global overrides to a new test_bitcoin_main.cpp file.
|
2017-03-10 15:47:41 -05:00 |
|