From 6eae3bc0dcba115de449387c9c31c0155bdb945d Mon Sep 17 00:00:00 2001 From: h5p9sl <21267024+h5p9sl@users.noreply.github.com> Date: Sat, 12 Oct 2019 02:01:43 -0600 Subject: [PATCH] Change unsigned to size_t --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6628790..79c1914 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ int main() { ); // Convert 'out' to string - for (unsigned i = 0; i < out.size(); i++) { + for (size_t i = 0; i < out.size(); i++) { result << std::hex << (int)out[i]; } std::cout << result.str() << std::endl;