Jianping Wu
|
7a994de062
|
First major changes to kevacoin text.
|
2018-12-13 10:43:53 -08:00 |
|
Adrian Gallagher
|
ad3c330972
|
Merge remote-tracking branch 'bitcoin/0.16' into HEAD
|
2018-07-23 16:53:43 -07:00 |
|
Luke Dashjr
|
18b0c69e2f
|
Bugfix: Include <memory> for std::unique_ptr
GitHub-Pull: #12859
Rebased-From: a5bca13
|
2018-06-13 16:07:44 +08:00 |
|
Adrian Gallagher
|
32ee7c79ae
|
Litecoin: Fix tests
|
2018-03-15 15:57:27 -07: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 |
|