mirror of
https://github.com/Decompollaborate/rabbitizer.git
synced 2024-12-27 12:16:07 +00:00
Add missing hash function to type hint file
This commit is contained in:
parent
345c5c9078
commit
eb407ec9d3
@ -4,7 +4,7 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "rabbitizer"
|
name = "rabbitizer"
|
||||||
# Version should be synced with include/common/RabbitizerVersion.h
|
# Version should be synced with include/common/RabbitizerVersion.h
|
||||||
version = "1.7.6"
|
version = "1.7.7"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
authors = ["Anghelo Carvajal <angheloalf95@gmail.com>"]
|
authors = ["Anghelo Carvajal <angheloalf95@gmail.com>"]
|
||||||
description = "MIPS instruction decoder"
|
description = "MIPS instruction decoder"
|
||||||
|
@ -14,7 +14,7 @@ extern "C" {
|
|||||||
// Header version
|
// Header version
|
||||||
#define RAB_VERSION_MAJOR 1
|
#define RAB_VERSION_MAJOR 1
|
||||||
#define RAB_VERSION_MINOR 7
|
#define RAB_VERSION_MINOR 7
|
||||||
#define RAB_VERSION_PATCH 6
|
#define RAB_VERSION_PATCH 7
|
||||||
|
|
||||||
#define RAB_VERSION_STR RAB_STRINGIFY(RAB_VERSION_MAJOR) "." RAB_STRINGIFY(RAB_VERSION_MINOR) "." RAB_STRINGIFY(RAB_VERSION_PATCH)
|
#define RAB_VERSION_STR RAB_STRINGIFY(RAB_VERSION_MAJOR) "." RAB_STRINGIFY(RAB_VERSION_MINOR) "." RAB_STRINGIFY(RAB_VERSION_PATCH)
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
[project]
|
[project]
|
||||||
name = "rabbitizer"
|
name = "rabbitizer"
|
||||||
# Version should be synced with include/common/RabbitizerVersion.h
|
# Version should be synced with include/common/RabbitizerVersion.h
|
||||||
version = "1.7.6"
|
version = "1.7.7"
|
||||||
description = "MIPS instruction decoder"
|
description = "MIPS instruction decoder"
|
||||||
# license = "MIT"
|
# license = "MIT"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
@ -20,5 +20,7 @@ class Enum:
|
|||||||
def __gt__(self, __o: object) -> bool: ...
|
def __gt__(self, __o: object) -> bool: ...
|
||||||
def __ge__(self, __o: object) -> bool: ...
|
def __ge__(self, __o: object) -> bool: ...
|
||||||
|
|
||||||
|
def __hash__(self) -> int: ...
|
||||||
|
|
||||||
def __repr__(self) -> str: ...
|
def __repr__(self) -> str: ...
|
||||||
def __str__(self) -> str: ...
|
def __str__(self) -> str: ...
|
||||||
|
Loading…
Reference in New Issue
Block a user