Skip to content

Commit

Permalink
Pocinka 32-bitnoj sborki.
Browse files Browse the repository at this point in the history
  • Loading branch information
Panzerschrek committed Apr 29, 2024
1 parent 769a26a commit b1a51ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/compiler0/code_builder_lib/cb_expressions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2492,7 +2492,7 @@ Value CodeBuilder::ConcatenateCharArrays(
{
// Generic path - process concatenation symbol by symbol.
llvm::SmallVector<llvm::Constant*, 64> constants;
constants.resize( result_array_type.element_count );
constants.resize( size_t(result_array_type.element_count) );

for( uint64_t i= 0; i < l_array_type->element_count; ++i )
constants[size_t(i)]= l_var->constexpr_value->getAggregateElement(uint32_t(i));
Expand Down

0 comments on commit b1a51ea

Please sign in to comment.