Skip to content

Commit d35849b

Browse files
committed
[c++] fix handle ids
1 parent 80010ba commit d35849b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/utils/handle.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -50,31 +50,31 @@ struct entity_to_id<nix::Source> {
5050
template<>
5151
struct entity_to_id<nix::Feature> {
5252
static const bool is_valid = true;
53-
static const int value = 5;
53+
static const int value = 6;
5454
};
5555

5656
template<>
5757
struct entity_to_id<nix::MultiTag> {
5858
static const bool is_valid = true;
59-
static const int value = 6;
59+
static const int value = 7;
6060
};
6161

6262
template<>
6363
struct entity_to_id<nix::Section> {
6464
static const bool is_valid = true;
65-
static const int value = 7;
65+
static const int value = 8;
6666
};
6767

6868
template<>
6969
struct entity_to_id<nix::Property> {
7070
static const bool is_valid = true;
71-
static const int value = 8;
71+
static const int value = 9;
7272
};
7373

7474
template<>
7575
struct entity_to_id<nix::Group> {
7676
static const bool is_valid = true;
77-
static const int value = 9;
77+
static const int value = 10;
7878
};
7979

8080
/*

0 commit comments

Comments
 (0)