Skip to content

Commit

Permalink
[Common/graph] Unsigned indices
Browse files Browse the repository at this point in the history
  • Loading branch information
3dJan committed Nov 8, 2023
1 parent 1c258cb commit 9cb3d4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Include/Common/Graph/IDirectedGraph.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

namespace NMR::common::graph
{
using Identifier = int;
using Identifier = std::size_t;
using DependencySet = std::set<Identifier>;
using VertexList = std::vector<Identifier>;

Expand Down

0 comments on commit 9cb3d4f

Please sign in to comment.