Use love's sized int typedefs instead of C's.

--HG--
branch : minor
This commit is contained in:
Alex Szpakowski
2016-10-06 23:01:44 -03:00
parent 37520bd18b
commit 2bc036f4c9
2 changed files with 85 additions and 87 deletions
+2 -4
View File
@@ -24,9 +24,7 @@
// LOVE
#include "common/Data.h"
#include "common/StringMap.h"
// STL
#include <cstdint>
#include "common/int.h"
namespace love
{
@@ -66,7 +64,7 @@ public:
* @param[in] length The length of the input data.
* @return A string of bytes, representing the result of the hash function.
**/
virtual std::string hash(Function function, const char *input, uint64_t length) const = 0;
virtual std::string hash(Function function, const char *input, uint64 length) const = 0;
/**
* @param[in] function The requested hash function.