Skip to content

Commit

Permalink
vendor: Update vendored sources to igraph/igraph@befc831
Browse files Browse the repository at this point in the history
fix: correct some implicit integer conversions
  • Loading branch information
krlmlr committed Jan 6, 2025
1 parent 261961a commit 99ced30
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/vendor/cigraph/src/community/spinglass/NetDataTypes.h
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ DATA &HugeArray<DATA>::Set(igraph_integer_t index) {
igraph_integer_t data_size;
while (size < index + 1) {
highest_field_index++;
data_size = 1UL << highest_field_index;
data_size = igraph_integer_t(1) << highest_field_index;
data = new DATA[data_size];
for (igraph_integer_t i = 0; i < data_size; i++) {
data[i] = 0;
Expand Down
4 changes: 2 additions & 2 deletions src/vendor/igraph_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@

__BEGIN_DECLS

#define IGRAPH_VERSION "0.10.15-21-g5e3c56c6a"
#define IGRAPH_VERSION "0.10.15-22-gbefc831ff"
#define IGRAPH_VERSION_MAJOR 0
#define IGRAPH_VERSION_MINOR 10
#define IGRAPH_VERSION_PATCH 15
#define IGRAPH_VERSION_PRERELEASE "21-g5e3c56c6a"
#define IGRAPH_VERSION_PRERELEASE "22-gbefc831ff"

IGRAPH_EXPORT void igraph_version(const char **version_string,
int *major,
Expand Down

0 comments on commit 99ced30

Please sign in to comment.