diff options
author | fanquake <fanquake@gmail.com> | 2022-06-11 14:29:09 +0100 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2022-06-15 12:56:44 +0100 |
commit | d873ff96e51a3e7f2fdc3fdd1baee2bbe7583e06 (patch) | |
tree | d75c5d34033c6c709985a4697053a31def926533 /src/univalue/include/univalue.h | |
parent | e2aa7047f9b94232ff4958381321e6867d24b379 (diff) |
refactor: cleanups post unsubtree'ing univalue
Mostly changes to remove src/univalue exceptions from the various linters,
and the required code changes to make them happy. As well as minor doc
changes.
Diffstat (limited to 'src/univalue/include/univalue.h')
-rw-r--r-- | src/univalue/include/univalue.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/univalue/include/univalue.h b/src/univalue/include/univalue.h index f0d4de2035..22be0311e8 100644 --- a/src/univalue/include/univalue.h +++ b/src/univalue/include/univalue.h @@ -3,8 +3,8 @@ // Distributed under the MIT software license, see the accompanying // file COPYING or https://opensource.org/licenses/mit-license.php. -#ifndef __UNIVALUE_H__ -#define __UNIVALUE_H__ +#ifndef BITCOIN_UNIVALUE_INCLUDE_UNIVALUE_H +#define BITCOIN_UNIVALUE_INCLUDE_UNIVALUE_H #include <charconv> #include <cstdint> @@ -194,4 +194,4 @@ extern const UniValue NullUniValue; const UniValue& find_value( const UniValue& obj, const std::string& name); -#endif // __UNIVALUE_H__ +#endif // BITCOIN_UNIVALUE_INCLUDE_UNIVALUE_H |