diff options
| author | Wladimir J. van der Laan <[email protected]> | 2014-11-07 10:39:47 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2014-11-07 10:39:54 +0100 |
| commit | a68bb4cdbee1ac87a6cca27acec1776de33a5671 (patch) | |
| tree | b1f4a440d2124b00e5ed2dcc7b3cda0cdc55f496 | |
| parent | Merge pull request #5214 (diff) | |
| parent | Fixing warning C4099: 'CExtPubKey' : type name first seen using 'class' now s... (diff) | |
| download | discoin-a68bb4cdbee1ac87a6cca27acec1776de33a5671.tar.xz discoin-a68bb4cdbee1ac87a6cca27acec1776de33a5671.zip | |
Merge pull request #5232
5985ba9 Fixing warning C4099: 'CExtPubKey' : type name first seen using 'class' now seen using 'struct' (ENikS)
| -rw-r--r-- | src/key.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -13,7 +13,7 @@ #include <stdexcept> #include <vector> -class CExtPubKey; +struct CExtPubKey; class CPubKey; /** |