Fix #107
This commit is contained in:
parent
a82eb7aa57
commit
efc9d72c95
|
@ -605,7 +605,8 @@ private:
|
|||
|
||||
void formatSwitch()
|
||||
{
|
||||
if (indents.length == 0 || indents.top != tok!"with")
|
||||
if (indents.length > 0 && indents.top == tok!"with")
|
||||
indents.pop();
|
||||
indents.push(tok!"switch");
|
||||
writeToken(); // switch
|
||||
write(" ");
|
||||
|
|
|
@ -0,0 +1,15 @@
|
|||
void msgpackToGValue(MsgValue input)
|
||||
{
|
||||
with (MsgValue.Type) switch (input.type)
|
||||
{
|
||||
case boolean:
|
||||
a();
|
||||
break;
|
||||
case unsigned:
|
||||
b();
|
||||
break;
|
||||
default:
|
||||
assert(false);
|
||||
}
|
||||
return retVal;
|
||||
}
|
|
@ -0,0 +1,15 @@
|
|||
void msgpackToGValue(MsgValue input)
|
||||
{
|
||||
with (MsgValue.Type) switch (input.type)
|
||||
{
|
||||
case boolean:
|
||||
a();
|
||||
break;
|
||||
case unsigned:
|
||||
b();
|
||||
break;
|
||||
default:
|
||||
assert(false);
|
||||
}
|
||||
return retVal;
|
||||
}
|
|
@ -0,0 +1,13 @@
|
|||
void msgpackToGValue(MsgValue input) {
|
||||
with (MsgValue.Type) switch (input.type) {
|
||||
case boolean:
|
||||
a();
|
||||
break;
|
||||
case unsigned:
|
||||
b();
|
||||
break;
|
||||
default:
|
||||
assert(false);
|
||||
}
|
||||
return retVal;
|
||||
}
|
Loading…
Reference in New Issue