diff options
author | Egor Pugin <egor.pugin@gmail.com> | 2020-03-13 13:45:37 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-13 13:45:37 +0300 |
commit | dee88d3099607d6fa49e2775aaa8a6cb2d77d710 (patch) | |
tree | 74e5daa9a58f3a97b417925a212ac2cd31487a5e /test | |
parent | d1c6a8062577f5ce58105afff2d0a1887bfff957 (diff) | |
parent | 26fac5bf7e87dd5704a967ee4c744228b93d20b7 (diff) |
Merge pull request #129 from reo7sp/fix/use_proper_types
fix: use C++ fixed-width types instead of C types
Diffstat (limited to 'test')
-rw-r--r-- | test/utils.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/utils.h b/test/utils.h index e49534e..5951550 100644 --- a/test/utils.h +++ b/test/utils.h @@ -24,7 +24,7 @@ inline std::string diff(const T& test, const T& expected, std::string (*toString typename T::const_iterator end2 = expected.end(); bool r1, r2; std::string s1, s2; - size_t i = 0; + std::size_t i = 0; do { r1 = iter1 != end1; r2 = iter2 != end2; |