From 17c2e48222fb5a461fbf6bab3a44fd5a12b1f018 Mon Sep 17 00:00:00 2001 From: Tim Hughes Date: Thu, 16 Jan 2014 20:53:57 +0000 Subject: [PATCH] Disable warnings in unfinished class. --- libethereum/Trie.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libethereum/Trie.h b/libethereum/Trie.h index 252ea7c7c..bec0a5232 100644 --- a/libethereum/Trie.h +++ b/libethereum/Trie.h @@ -57,6 +57,8 @@ private: TrieNode* m_root; }; +#pragma warning(push) +#pragma warning(disable:4100) // disable warnings so it compiles /** * @brief Merkle Patricia Tree "Trie": a modifed base-16 Radix tree. * This version uses an LDB backend - TODO: split off m_db & m_over into opaque key/value map layer and allow caching & testing without DB. @@ -96,6 +98,7 @@ private: ldb::ReadOptions m_readOptions; }; +#pragma warning(pop) template class TrieDB: public GenericTrieDB