diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2016-10-17 09:53:06 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-17 09:53:06 +0200 |
commit | c7ea84241644e0ccb83e3ef9e36eff5cef509fc0 (patch) | |
tree | fcc7640f2081a6d2d2e02fff4cbe96cdf1a14fd4 /bin | |
parent | 0eccf42884d4a595ac659355190dc1bb0a932c7a (diff) | |
parent | 6debabe57eaff1bf59d04b84eb56ffdef2a2957f (diff) |
Merge pull request #6733 from Cruel/patch-1
Use int consistently instead of int32_t for Vectors
Diffstat (limited to 'bin')
-rw-r--r-- | bin/tests/test_math.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/tests/test_math.cpp b/bin/tests/test_math.cpp index e5667bff64..9329002f76 100644 --- a/bin/tests/test_math.cpp +++ b/bin/tests/test_math.cpp @@ -516,7 +516,7 @@ MainLoop* test() { { - Vector<int32_t> hashes; + Vector<int> hashes; List<StringName> tl; ObjectTypeDB::get_type_list(&tl); |