added comments

This commit is contained in:
moerp
2021-05-24 12:12:42 +02:00
parent c2f713535a
commit ddf2f0b513
2 changed files with 4 additions and 4 deletions

View File

@ -23,6 +23,7 @@ void SQMTableModel::SetStartValues(int pBase, int pExp, int pMod) {
}
// Convert int to binary
std::string SQMTableModel::IntToBinary(int n) {
string bin;
int mask = 1;