Skip to content

Commit 95d14a8

Browse files
committed
Fix a warning.
1 parent 7f37867 commit 95d14a8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/pydemumble.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#include <swift/Demangling/Demangle.h>
55
#include <string>
66

7-
#define __VERSION__ "0.0.1"
7+
#define __PYDEMUMBLE_VERSION__ "0.0.1"
88

99
namespace pydemumble
1010
{
@@ -34,7 +34,7 @@ namespace pydemumble
3434

3535
std::string version()
3636
{
37-
return std::string(__VERSION__);
37+
return std::string(__PYDEMUMBLE_VERSION__);
3838
}
3939

4040
NB_MODULE(pydemumble, m) {

0 commit comments

Comments
 (0)