Assignment operators
Declared in <llvm/ADT/StringSwitch.h>
Copy-assignment is deleted because the subject string is const.
void
operator=(StringSwitch const& Other) = delete;
» more...
Move-assignment is deleted because the subject string is const.
void
operator=(StringSwitch&& Other) = delete;
» more...
| Name | Description |
|---|---|
| Other | Unused; copy assignment is deleted. |