Skip to content

Commit

Permalink
Fix clang issue
Browse files Browse the repository at this point in the history
Signed-off-by: Bogdan Pereanu <[email protected]>
  • Loading branch information
pereanub committed Dec 19, 2024
1 parent bc623ec commit 9a1821b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ class IGraph : public std::enable_shared_from_this<IGraph> {

uint32_t get_unique_id();
void set_last_submitted_id(uint32_t id_index);
const uint32_t get_last_submitted_id() const;
uint32_t get_last_submitted_id() const;

const std::optional<std::size_t> get_batch_size() const;

Expand Down
2 changes: 1 addition & 1 deletion src/plugins/intel_npu/src/common/src/igraph.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ void IGraph::set_last_submitted_id(uint32_t id_index) {
_last_submitted_id = id_index;
}

const uint32_t IGraph::get_last_submitted_id() const {
uint32_t IGraph::get_last_submitted_id() const {
return _last_submitted_id;
}

Expand Down

0 comments on commit 9a1821b

Please sign in to comment.