Get rid of underscore prefixes for include guards.
This is because they may conflict with reserved names. Also took this opportunity to make the guards in the zcash subdir a bit more uniform by having them all conform to ZC_<...>_H_ This closes #1272
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
#ifndef _ZCCONSTANTS_H_
|
||||
#define _ZCCONSTANTS_H_
|
||||
#ifndef ZC_ZCASH_H_
|
||||
#define ZC_ZCASH_H_
|
||||
|
||||
#define ZC_NUM_JS_INPUTS 2
|
||||
#define ZC_NUM_JS_OUTPUTS 2
|
||||
@@ -14,4 +14,4 @@
|
||||
|
||||
#define ZC_NOTEPLAINTEXT_SIZE (ZC_NOTEPLAINTEXT_LEADING + ZC_V_SIZE + ZC_RHO_SIZE + ZC_R_SIZE + ZC_MEMO_SIZE)
|
||||
|
||||
#endif // _ZCCONSTANTS_H_
|
||||
#endif // ZC_ZCASH_H_
|
||||
|
||||
Reference in New Issue
Block a user