Skip to content
Snippets Groups Projects

Switch integer values to int32

Merged Daniel Hornung requested to merge f-int32 into dev
3 files
+ 13
10
Compare changes
  • Side-by-side
  • Inline
Files
3
+ 3
3
@@ -20,7 +20,7 @@
*
*/
#include <cstdint> // for uint32_t
#include <cstdint> // for uint32_t
#ifdef __cplusplus
extern "C" {
@@ -462,8 +462,8 @@ int caosdb_entity_property_set_int_value(caosdb_entity_property *property, const
int caosdb_entity_property_set_double_value(caosdb_entity_property *property, const double value);
int caosdb_entity_property_set_boolean_value(caosdb_entity_property *property, const bool value);
int caosdb_entity_property_set_string_value(caosdb_entity_property *property, const char *value);
int caosdb_entity_property_set_int_list_value(caosdb_entity_property *property, const int32_t *value,
const int length);
int caosdb_entity_property_set_int_list_value(caosdb_entity_property *property,
const int32_t *value, const int length);
int caosdb_entity_property_set_double_list_value(caosdb_entity_property *property,
const double *value, const int length);
int caosdb_entity_property_set_boolean_list_value(caosdb_entity_property *property,
Loading