From cc2974db1b01d055b5eb05f953e453d309ceba05 Mon Sep 17 00:00:00 2001 From: Jon Layton Date: Thu, 2 Aug 2018 09:58:53 -0500 Subject: [PATCH] [style] Trivial: Include guard endings cleanup --- src/consensus/joinsplit.h | 2 +- src/fork.h | 2 +- src/paymentdisclosure.h | 2 +- src/paymentdisclosuredb.h | 2 +- src/primitives/joinsplit.h | 2 +- src/uint252.h | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/consensus/joinsplit.h b/src/consensus/joinsplit.h index b5187e627..cee1763c3 100644 --- a/src/consensus/joinsplit.h +++ b/src/consensus/joinsplit.h @@ -7,4 +7,4 @@ bool CheckTransactionJoinsplits(const CTransaction& tx, CValidationState &state); -#endif +#endif // BITCOIN_CONSENSUS_JOINSPLIT_H diff --git a/src/fork.h b/src/fork.h index 2683e9f14..d6d119502 100644 --- a/src/fork.h +++ b/src/fork.h @@ -31,4 +31,4 @@ bool ContextualCheckBlockFork(const CBlock& block, CValidationState& state, std::string GetUTXOFileName(int); -#endif +#endif // BITCOIN_FORK_H diff --git a/src/paymentdisclosure.h b/src/paymentdisclosure.h index d1783640b..f608539c1 100644 --- a/src/paymentdisclosure.h +++ b/src/paymentdisclosure.h @@ -145,4 +145,4 @@ struct PaymentDisclosure { typedef std::pair PaymentDisclosureKeyInfo; -#endif // ZCASH_PAYMENTDISCLOSURE_H +#endif // BITCOIN_PAYMENTDISCLOSURE_H diff --git a/src/paymentdisclosuredb.h b/src/paymentdisclosuredb.h index a232a2bb7..9ade70861 100644 --- a/src/paymentdisclosuredb.h +++ b/src/paymentdisclosuredb.h @@ -39,4 +39,4 @@ public: }; -#endif // ZCASH_PAYMENTDISCLOSUREDB_H +#endif // BITCOIN_PAYMENTDISCLOSUREDB_H diff --git a/src/primitives/joinsplit.h b/src/primitives/joinsplit.h index 104b04ea4..41fe6baed 100644 --- a/src/primitives/joinsplit.h +++ b/src/primitives/joinsplit.h @@ -145,4 +145,4 @@ public: } }; -#endif +#endif // BITCOIN_PRIMITIVES_JOINSPLIT_H diff --git a/src/uint252.h b/src/uint252.h index f80d52bf4..48e7fa88f 100644 --- a/src/uint252.h +++ b/src/uint252.h @@ -52,4 +52,4 @@ public: friend inline bool operator==(const uint252& a, const uint252& b) { return a.contents == b.contents; } }; -#endif // BITCOIN_UINT_252_H +#endif // BITCOIN_UINT252_H