Skip to content

Commit

Permalink
remove extra semicolons from class definition
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisHal committed Jun 7, 2024
1 parent c9fdf2e commit d6b6dde
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hekatoolslib/hkTree.h
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ namespace hkLib {
throw std::out_of_range("offset too large while accessing tree node");
}
return extractValueNoCheck<T>(offset);
};
}
/// <summary>
/// tries to extract a value from record data, swaps bytes if needed
/// </summary>
Expand All @@ -250,7 +250,7 @@ namespace hkLib {
else {
return extractValueNoCheck<T>(offset);
}
};
}
/// <summary>
/// extract a value from record data, swaps bytes if needed,
/// return default value
Expand Down

0 comments on commit d6b6dde

Please sign in to comment.