Skip to content

Commit

Permalink
fix warning
Browse files Browse the repository at this point in the history
  • Loading branch information
Prevter committed Oct 11, 2024
1 parent 5dda43f commit ced2b2f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions include/rift/nodes/value.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@ namespace rift {
case Value::Type::Boolean:
out << "Boolean(" << m_value.getBoolean() << ')';
break;
case Value::Type::Null:
out << "Null()";
break;
}
out << ')';
return out;
Expand Down

0 comments on commit ced2b2f

Please sign in to comment.