diff options
| author | Philip Kaufmann <[email protected]> | 2014-06-24 14:17:43 +0200 |
|---|---|---|
| committer | Philip Kaufmann <[email protected]> | 2014-06-26 10:36:57 +0200 |
| commit | e10dcf27b4fb324a85b5650c7acd2ea5a52e822f (patch) | |
| tree | 6725fc2d632622ef5fbdc7b480996adb9b9a5fba /src/net.h | |
| parent | Merge pull request #4368 (diff) | |
| download | discoin-e10dcf27b4fb324a85b5650c7acd2ea5a52e822f.tar.xz discoin-e10dcf27b4fb324a85b5650c7acd2ea5a52e822f.zip | |
ensure clean and consistent "namespace" usage
- remove some missplaced ;
- ensure end of a namespace is clearly visible
- use same formatting when using namespace
Diffstat (limited to 'src/net.h')
| -rw-r--r-- | src/net.h | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -28,14 +28,13 @@ #include <boost/signals2/signal.hpp> #include <openssl/rand.h> - class CAddrMan; class CBlockIndex; class CNode; namespace boost { class thread_group; -} +} // namespace boost /** Time between pings automatically sent out for latency probing and keepalive (in seconds). */ static const int PING_INTERVAL = 2 * 60; |