Registers a setting without defining an Accessor. This should rarely be used directly and most use cases will want FOLLY_SETTING_DEFINE instead.
Declared in <folly/settings/Settings.h>
#define FOLLY_SETTING_REGISTER(_project, _name, _Type, _def, _mut, _cli, _desc)
| Name | Description |
|---|---|
| _project | Project identifier of the setting. |
| _name | Setting name within the project. |
| _Type | Setting value type. |
| _def | Default value for the setting. |
| _mut | Mutability of the setting. |
| _cli | Determines if the setting can be set from the command line. |
| _desc | Setting documentation. |