I'm trying to switch on a custom type. The Standard says
The condition shall be of integral type, enumeration type, or of a class type for which a single non-explicit conversion function to integral or enumeration type exists (12.3). If the condition is of class type, the condition is converted by calling that conversion function, and the result of the conversion is used in place of the original condition for the remainder of this section. Integral promotions are performed.
This suggests that a type which has one implicit conversion function to an enum type should be a valid switch expression. But when I'm trying to use this wording, Visual Studio gives an error about the switch expression being non-integral. Is VS just non-compliant in this area?
The definition of the class type is
struct Token {
Token()
: line(0)
, columnbegin(0)
, columnend(0) {}
Token(const Codepoint& cp) {
*this = cp;
}
template<typename Iterator> Token(Iterator begin, Iterator end) {
columnend = 0;
columnbegin = 0;
line = 0;
while(begin != end) {
*this += *begin;
begin++;
}
}
operator TokenType() {
return type;
}
Token& operator+=(const Codepoint& cp) {
if (cp.column >= columnend)
columnend = cp.column;
if (columnbegin == 0)
columnbegin = cp.column;
Codepoints += cp.character;
if (line == 0)
line = cp.line;
return *this;
}
Token& operator=(const Codepoint& cp) {
line = cp.line;
columnbegin = cp.column;
columnend = cp.column;
Codepoints = cp.character;
return *this;
}
int line;
int columnbegin;
int columnend;
TokenType type;
string Codepoints;
};
with switch(*begin) as the erroring line where begin is a vector<Token>::iterator.
Edit:
Please, READ THE QUESTION. You want to see my code? How about the bleedingly obvious that I stated in the line right above this one? Maybe I should put it in size fifty letters in bold and italics.
std::vector<Token>::iterator begin = vector.begin();
switch(*begin) {
case TokenType::stuff:
}