| 68 | return *std::get_if<std::pair<uint32_t, std::string>>(&Target); |
| 69 | } |
| 70 | void setExport(const uint32_t Idx, std::string_view Name) noexcept { |
| 71 | Target.emplace<std::pair<uint32_t, std::string>>(Idx, Name); |
| 72 | } |
| 73 | |
| 74 | const std::pair<uint32_t, uint32_t> &getOuter() const noexcept { |
| 75 | return *std::get_if<std::pair<uint32_t, uint32_t>>(&Target); |