Skip to content

Commit

Permalink
InstrumentProfileReader::getLastModified
Browse files Browse the repository at this point in the history
InstrumentProfileReader::wasComplete
  • Loading branch information
ttldtor committed Oct 12, 2023
1 parent eb3d5e8 commit 06693da
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/internal/Isolate.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -239,8 +239,8 @@ namespace ipf {
nullptr);
}

static std::int64_t
getLastModified(/* dxfg_instrument_profile_reader_t * */ void *graalInstrumentProfileReaderHandle) noexcept {
std::int64_t InstrumentProfileReader::getLastModified(
/* dxfg_instrument_profile_reader_t * */ void *graalInstrumentProfileReaderHandle) noexcept {
if (!graalInstrumentProfileReaderHandle) {
return 0;
}
Expand All @@ -253,7 +253,8 @@ getLastModified(/* dxfg_instrument_profile_reader_t * */ void *graalInstrumentPr
0, dxfcpp::bit_cast<dxfg_instrument_profile_reader_t *>(graalInstrumentProfileReaderHandle));
}

static bool wasComplete(/* dxfg_instrument_profile_reader_t * */ void *graalInstrumentProfileReaderHandle) noexcept {
bool InstrumentProfileReader::wasComplete(
/* dxfg_instrument_profile_reader_t * */ void *graalInstrumentProfileReaderHandle) noexcept {
if (!graalInstrumentProfileReaderHandle) {
return false;
}
Expand Down

0 comments on commit 06693da

Please sign in to comment.