diff options
author | Nick Mathewson <nickm@torproject.org> | 2019-09-05 11:48:48 -0400 |
---|---|---|
committer | David Goulet <dgoulet@torproject.org> | 2019-09-11 09:42:19 -0400 |
commit | 5ca5d196acb4b2b237b9ed4bc38fff8b6dbf2bfd (patch) | |
tree | 029e337a29763dc62531eaa7241f0a0cca239385 /src/lib/conf | |
parent | 9b571d4729f0a6a6c1040ad9cb3e452ff0a5cee6 (diff) | |
download | tor-5ca5d196acb4b2b237b9ed4bc38fff8b6dbf2bfd.tar.gz tor-5ca5d196acb4b2b237b9ed4bc38fff8b6dbf2bfd.zip |
Remove all VTFLAG_* usage.
Diffstat (limited to 'src/lib/conf')
-rw-r--r-- | src/lib/conf/conftypes.h | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/src/lib/conf/conftypes.h b/src/lib/conf/conftypes.h index d5ab4e51cc..d8575f3649 100644 --- a/src/lib/conf/conftypes.h +++ b/src/lib/conf/conftypes.h @@ -171,22 +171,6 @@ typedef struct struct_magic_decl_t { /* Aliases for old individual options. These will get removed soon. */ #define CVFLAG_NODUMP CFLG_NODUMP -#define VTFLAG_CUMULATIVE CFLG_NOREPLACE -#define VTFLAG_UNSETTABLE CFLG_NOSET - -/** - * Set of flags to make a variable "derived" -- so that inspecting this - * variable inspects part of another, and changing this variable changes part - * of another. - * - * Derived variables require special handling in several ways: they do not - * need to be copied independently when we are copying a config object, since - * copying the variable they are derived from copies them too. Similarly, - * they do not need to be compared independently when listing changes, since - * comparing the variable that they are derived from compares them too. - **/ -#define VTFLAG_CONTAINED \ - (CFLG_NOCOPY | CFLG_NOCMP | CFLG_NODUMP) /** Set of options to make a flag invisible. */ #define CVFLAG_INVISIBLE \ |