Skip to content

Commit

Permalink
fix(analytical): Fix ret type of getIntData and getDoubleData for…
Browse files Browse the repository at this point in the history
  • Loading branch information
zhanglei1949 authored Jun 24, 2024
1 parent 7d93d99 commit 36785af
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -205,12 +205,12 @@ long getLongData(
int propertyId);

@FFINameAlias("GetData<uint32_t>")
long getIntData(
int getIntData(
@FFITypeAlias(GRAPE_VERTEX + "<uint64_t>") @CXXReference Vertex<Long> vertex,
int propertyId);

@FFINameAlias("GetData<double>")
long getDoubleData(
double getDoubleData(
@FFITypeAlias(GRAPE_VERTEX + "<uint64_t>") @CXXReference Vertex<Long> vertex,
int propertyId);

Expand Down

0 comments on commit 36785af

Please sign in to comment.