diff options
author | Phil Newton <phil@sodaware.net> | 2021-10-21 08:36:40 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2022-04-06 15:14:34 -0700 |
commit | 0f3888c4d43e579754cb23688d8897b579c2550c (patch) | |
tree | e140aedeeafd13e337bfd513f329be67b46c52db /src/value.h | |
parent | 7d67e5aac9cd671aaf50131271c4e1527534dbb3 (diff) | |
download | fork-ledger-0f3888c4d43e579754cb23688d8897b579c2550c.tar.gz fork-ledger-0f3888c4d43e579754cb23688d8897b579c2550c.tar.bz2 fork-ledger-0f3888c4d43e579754cb23688d8897b579c2550c.zip |
Change header guard names to use `INCLUDED_` prefix
Fixes #2049
Diffstat (limited to 'src/value.h')
-rw-r--r-- | src/value.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/value.h b/src/value.h index e44f9354..cd05c874 100644 --- a/src/value.h +++ b/src/value.h @@ -46,8 +46,8 @@ * the number 10 to a value object, it's internal type will be * INTEGER. */ -#ifndef _VALUE_H -#define _VALUE_H +#ifndef INCLUDED_VALUE_H +#define INCLUDED_VALUE_H #include "balance.h" // includes amount.h #include "mask.h" @@ -998,4 +998,4 @@ void put_value(property_tree::ptree& pt, const value_t& value); } // namespace ledger -#endif // _VALUE_H +#endif // INCLUDED_VALUE_H |