Skip to content

Commit

Permalink
changes
Browse files Browse the repository at this point in the history
  • Loading branch information
externl committed Mar 8, 2024
1 parent dcd7f6e commit efe3262
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions cpp/src/slice2cpp/Gen.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,14 @@ namespace
{
bool isConstexprType(const TypePtr& type)
{
BuiltinPtr bp = dynamic_pointer_cast<Builtin>(type);
BuiltinPtr bp = dynamic_pointer_cast<Builtin >(type);
if (bp)
{
switch (bp->kind())
switch (bp->kind() )
{
case Builtin::KindByte:
case Builtin::KindBool:

case Builtin::KindShort:
case Builtin::KindInt:
case Builtin::KindLong:
Expand Down

0 comments on commit efe3262

Please sign in to comment.