Skip to content

Commit

Permalink
💚 Fix type conversion issue
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelwa committed Nov 27, 2024
1 parent adeaed7 commit d577248
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ struct generate_random_sidb_layout_params
* is small and many SiDBs are to be placed, several tries are required to generate a layout with no positively
* charged SiDBs.
*/
uint64_t maximal_attempts = 10E6;
uint64_t maximal_attempts = static_cast<uint64_t>(10E6);
/**
* The desired number of unique layouts to be generated.
*/
Expand Down

0 comments on commit d577248

Please sign in to comment.