There was an error while loading. Please reload this page.
1 parent 2f4dbab commit ba467f5Copy full SHA for ba467f5
1 file changed
include/trsp/trspHandler.hpp
@@ -172,13 +172,13 @@ class TrspHandler : public pgrouting::Pgr_messages {
172
/* idx -> id */
173
std::map<int64_t, int64_t> m_idx_to_id;
174
175
- [[maybe_unused]] int64_t m_start_vertex{};
176
- [[maybe_unused]] int64_t m_end_vertex{};
+ int64_t m_start_vertex{}; // NOSONAR
+ int64_t m_end_vertex{}; // NOSONAR
177
178
/*
179
* Used in dijkstra_exploration
180
*/
181
- [[maybe_unused]] int64_t m_current_node{};
+ int64_t m_current_node{}; // NOSONAR
182
183
Path m_path;
184
0 commit comments