Skip to content

Commit

Permalink
Fix compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
jedelbo committed Aug 20, 2024
1 parent d4ecfba commit 4be702e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/realm/exec/realm_trawler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -606,7 +606,7 @@ void Table::print_columns(const Group& group) const
{
std::cout << " <" << m_table_type << ">\n";
for (unsigned i = 0; i < m_column_names.size(); i++) {
auto type = m_column_types.get_val(i) & 0xFFFF;
int type = int(m_column_types.get_val(i) & 0xFFFF);
auto attr = realm::ColumnAttr(m_column_attributes.get_val(i));
std::string type_str;
realm::ColKey col_key;
Expand Down

0 comments on commit 4be702e

Please sign in to comment.