Skip to content

Commit

Permalink
Merge pull request #309 from strager/fix-size_t
Browse files Browse the repository at this point in the history
Fix typo in code sample
  • Loading branch information
bombela authored Nov 23, 2023
2 parents 65a769f + ffe14e9 commit b702c7f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -422,8 +422,8 @@ struct ResolvedTrace: public Trace {
struct SourceLoc {
std::string function;
std::string filename;
size_t line;
size_t col;
unsigned line;
unsigned col;
};
// In which binary object this trace is located.
Expand Down

0 comments on commit b702c7f

Please sign in to comment.