BlockchainCommons / bc-lifehash

A beautiful method of hash visualization based on Conway’s Game of Life: reference library in C/C++
Other
30 stars 8 forks source link

Fix compiler -Wreturn-type warning. #5

Closed PavelNajman closed 3 years ago

PavelNajman commented 3 years ago

When building with g++, the compiler shows a warning about control reaching the end of a non-void function. This PR removes the warning by adding the default branch to the switch statement.