aboutsummaryrefslogtreecommitdiff
path: root/src/serialize.h
AgeCommit message (Collapse)Author
2012-05-20Update License in File HeadersFordy
I originally created a pull to replace the "COPYING" in crypter.cpp and crypter.h, but it turned out that COPYING was actually the correct file.
2012-05-04Merge branch '0.5.x' into 0.6.0.xLuke Dashjr
Conflicts: src/main.cpp src/serialize.h
2012-05-04Merge branch '0.4.x' into 0.5.xLuke Dashjr
2012-05-01remove unused typedef in serialize.hPhilip Kaufmann
2012-04-27Bump version to 0.5.5Luke Dashjr
2012-04-27Bump version to 0.4.6Luke Dashjr
2012-03-26Begin doxygen-compatible commentsPieter Wuille
2012-03-16Bump version to 0.5.4Luke Dashjr
2012-03-16Bump version to 0.4.5Luke Dashjr
2012-02-18Fix compilation warning.Matt Corallo
2012-02-07Merge branch '0.5.0.x' into 0.5.xLuke Dashjr
Conflicts: src/qt/locale/bitcoin_ru.ts src/qt/locale/bitcoin_zh_TW.ts
2012-02-07Merge branch '0.4.x' into 0.5.0.xLuke Dashjr
Conflicts: src/bitcoinrpc.cpp
2012-02-07Update copyrights to 2012 for files modified this yearLuke Dashjr
2012-02-07Update all copyrights to 2012Gavin Andresen
2012-01-16Merge branch '0.5.0.x' into 0.5.xLuke Dashjr
2012-01-16Merge branch '0.4.x' into 0.5.0.xLuke Dashjr
2012-01-16Code tidyups, fixing various warnings.Luke Dashjr
Partial cherry pick of: Compile with extra warnings turned on. And more makefile/code tidying up. This turns on most gcc warnings, and removes some unused variables and other code that triggers warnings. Exceptions are: -Wno-sign-compare : triggered by lots of comparisons of signed integer to foo.size(), which is unsigned. -Wno-char-subscripts : triggered by the convert-to-hex functions (I may fix this in a future commit). Conflicts: src/makefile.osx src/makefile.unix src/netbase.cpp src/rpc.cpp
2012-01-12Compile with extra warnings turned on. And more makefile/code tidying up.Gavin Andresen
This turns on most gcc warnings, and removes some unused variables and other code that triggers warnings. Exceptions are: -Wno-sign-compare : triggered by lots of comparisons of signed integer to foo.size(), which is unsigned. -Wno-char-subscripts : triggered by the convert-to-hex functions (I may fix this in a future commit).
2012-01-10Bump version to 0.5.3Luke Dashjr
2012-01-10Bump version to 0.5.0.4Luke Dashjr
2012-01-10Bump version to 0.4.4Luke Dashjr
2012-01-05Merge branch '0.5.0.x' into 0.5.xv0.5.2Luke Dashjr
2012-01-05Merge branch '0.4.x' into 0.5.0.xLuke Dashjr
2012-01-05Fix horrific performance found by gmaxwell.Matt Corallo
2012-01-04Fix horrific performance found by gmaxwell.Matt Corallo
2011-12-21Revert "Use standard C99 (and Qt) types for 64-bit integers"Wladimir J. van der Laan
This reverts commit 21d9f36781604e4ca9fc35dc65265593423b73e9.
2011-12-20Use standard C99 (and Qt) types for 64-bit integersLuke Dashjr
2011-12-20Include limits, not climints (using std::numeric_limits now)Gavin Andresen
2011-12-19Use std::numeric_limits<> for typesafe INT_MAX/etcGavin Andresen
2011-12-19Cleanup: removed dead code, and use C99 typedefs for int64 (supported by all ↵Gavin Andresen
modern c++ compilers)
2011-12-19Implement BIP 14 : separate protocol version from client versionGavin Andresen
2011-12-16Bump version to 0.5.2Luke Dashjr
2011-12-16Bump version 0.5.99 (prep for pulling for version 0.6)Gavin Andresen
2011-12-15Bump version to 0.5.0.3Luke Dashjr
2011-12-15Bump version to 0.5.0.2Luke Dashjr
2011-12-15Bump version to 0.4.3Luke Dashjr
2011-11-21Bump version to 0.4.2Luke Dashjr
2011-11-21Bump version to 0.5.1Gavin Andresen
2011-11-15Obsolete keypool and make sure database removes log files on shutdown.Gavin Andresen
2011-11-15Obsolete keypool and make sure database removes log files on shutdown.Gavin Andresen
2011-10-10Bump version to 0.4.1Luke Dashjr
2011-10-08Bump version to 0.5.0.0Gavin Andresen
2011-10-07Fix build on windows and macGavin Andresen
Replaced all occurrences of #if* __WXMSW__ with WIN32, and all occurrences of __WXMAC_OSX__ with MAC_OSX, and made sure those are defined appropriately in the makefile and bitcoin-qt.pro.
2011-09-26Bump version to 0.4.1Gavin Andresen
2011-09-03Merge branch 'master' of https://github.com/bitcoin/bitcoinWladimir J. van der Laan
2011-09-02Bumped version numbers to 0.4.0rc1v0.4.00rc1Gavin Andresen
2011-09-02Merge branch 'master' of https://github.com/bitcoin/bitcoinWladimir J. van der Laan
Conflicts: src/main.cpp
2011-08-19Move func 'REF' from util.h to serialize.hGiel van Schijndel
util.h doesn't use REF, serialize.h does, creating a dependency of serialize.h on util.h, but util.h already depends on serialize.h. To resolve this circular dependency the function 'REF' has now been moved closer to one of its two points of use. Signed-off-by: Giel van Schijndel <me@mortis.eu>
2011-08-16Merge branch 'master' of https://github.com/bitcoin/bitcoinWladimir J. van der Laan
2011-08-11Merge pull request #458 from TheBlueMatt/copyrightGavin Andresen
Unify copyright notices.