Skip to content
This repository has been archived by the owner on Dec 21, 2022. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
Make the damn thing compile again
  • Loading branch information
inducer committed Jul 10, 2013
1 parent 48ea5b8 commit fb6d9a9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/wrapper/id3.cpp
Expand Up @@ -221,9 +221,10 @@ void exposeID3()
.DEF_SIMPLE_METHOD(removeFrames)

#if (TAGPY_TAGLIB_HEX_VERSION >= 0x10800)
.DEF_OVERLOADED_METHOD(render, ByteVector (cl::*)() const)

This comment has been minimized.

Copy link
@LeeiFrankJaw

LeeiFrankJaw Jul 6, 2019

The code does not compile on my computer. I run Ubuntu 18.04 with python 3.6. However, after I deleted this line, it compiles with both clang and gcc.

This comment has been minimized.

Copy link
@inducer

inducer Jul 6, 2019

Author Owner

Thanks for tracking this down. I've applied that change. 6e95c5e

.DEF_OVERLOADED_METHOD(render, ByteVector (cl::*)(int) const)
#else
.DEF_SIMPLE_METHOD(render)
.def("render", (ByteVector (cl::*)() const) &cl::render)
#endif
;
}
Expand Down

0 comments on commit fb6d9a9

Please sign in to comment.