diff options
| author | Pieter Wuille <[email protected]> | 2012-04-16 14:56:45 +0200 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2012-04-17 20:03:42 +0200 |
| commit | 6b6aaa1698838278a547f16a15e635bd58ec867d (patch) | |
| tree | 62a79e33a866c2a92f548cecb6148c7339f8beaf /src/util.cpp | |
| parent | Move proto version to version.h. Reduce header deps a bit more. (diff) | |
| download | discoin-6b6aaa1698838278a547f16a15e635bd58ec867d.tar.xz discoin-6b6aaa1698838278a547f16a15e635bd58ec867d.zip | |
Further reduce header dependencies
This commit removes the dependency of serialize.h on PROTOCOL_VERSION,
and makes this parameter required instead of implicit. This is much saner,
as it makes the places where changing a version number can have an
influence obvious.
Diffstat (limited to 'src/util.cpp')
| -rw-r--r-- | src/util.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/util.cpp b/src/util.cpp index 19005fc76..ac65d417b 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -6,6 +6,7 @@ #include "util.h" #include "strlcpy.h" #include "version.h" +#include "ui_interface.h" #include <boost/algorithm/string/join.hpp> // Work around clang compilation problem in Boost 1.46: |