fix: changed ssize_t to intptr_t (ssize_t doens't exist on Windows)

Dieser Commit ist enthalten in:
Reinder Feenstra 2021-08-11 21:44:57 +02:00
Ursprung 885b788bae
Commit 95441f0399

Datei anzeigen

@ -119,7 +119,7 @@ class ObjectVectorProperty : public AbstractObjectVectorProperty
} }
} }
void moveInternal(const std::shared_ptr<T>& value, ssize_t count) void moveInternal(const std::shared_ptr<T>& value, intptr_t count)
{ {
if(count == 0) if(count == 0)
return; return;