Refactor: Update integer type usage

This updates the usage of integer types in code I wrote according to our new style guides.

Major changes:
* Use signed instead of unsigned integers in many places.
* C++ containers in blenlib use `int64_t` for size and indices now (instead of `uint`).
* Hash values for C++ containers are 64 bit wide now (instead of 32 bit).

I do hope that I broke no builds, but it is quite likely that some compiler reports
slightly different errors. Please let me know when there are any errors. If the fix
is small, feel free to commit it yourself.
I compiled successfully on linux with gcc and on windows.
This commit is contained in:
2020-07-20 12:16:20 +02:00
parent 686ab4c940
commit 8cbbdedaf4
87 changed files with 1277 additions and 1284 deletions

View File

@@ -35,9 +35,9 @@ struct MFSignature {
/* Use RawAllocator so that a MultiFunction can have static storage duration. */
Vector<std::string, 4, RawAllocator> param_names;
Vector<MFParamType, 4, RawAllocator> param_types;
Vector<uint, 4, RawAllocator> param_data_indices;
Vector<int, 4, RawAllocator> param_data_indices;
uint data_index(uint param_index) const
int data_index(int param_index) const
{
return param_data_indices[param_index];
}
@@ -46,10 +46,10 @@ struct MFSignature {
class MFSignatureBuilder {
private:
MFSignature &data_;
uint span_count_ = 0;
uint virtual_span_count_ = 0;
uint virtual_array_span_count_ = 0;
uint vector_array_count_ = 0;
int span_count_ = 0;
int virtual_span_count_ = 0;
int virtual_array_span_count_ = 0;
int vector_array_count_ = 0;
public:
MFSignatureBuilder(MFSignature &data) : data_(data)